Skip to content

Commit

Permalink
Prepare release 0.13.0-rc.16
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub actions <noreply@github.com>
  • Loading branch information
web-flow authored and Licenser committed Oct 10, 2023
1 parent b27e0c5 commit f91e72e
Show file tree
Hide file tree
Showing 11 changed files with 41 additions and 41 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "Apache-2.0"
name = "tremor-runtime"
readme = "README.md"
repository = "https://github.com/tremor-rs/tremor-runtime"
version = "0.13.0-rc.15"
version = "0.13.0-rc.16"
rust-version = "1.62"

[workspace]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.learn
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM rust:1.73-bullseye as builder

RUN cargo install --features=ssl websocat

FROM tremorproject/tremor:0.13.0-rc.15
FROM tremorproject/tremor:0.13.0-rc.16

COPY --from=builder /usr/local/cargo/bin/websocat /usr/local/bin/websocat

Expand Down
12 changes: 6 additions & 6 deletions tremor-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Tremor Api Callbacks"
edition = "2021"
license = "Apache-2.0"
name = "tremor-api"
version = "0.13.0-rc.15"
version = "0.13.0-rc.16"

[dependencies]
halfbrown = "0.2"
Expand All @@ -16,11 +16,11 @@ simd-json = "0.11"
tokio = { version = "1.32", features = ["full"] }
# we don't need sessions or cookies or shitty logging middleware
tide = { version = "0.16", default-features = false, features = ["h1-server"] }
tremor-pipeline = { version = "0.13.0-rc.15", path = "../tremor-pipeline" }
tremor-runtime = { version = "0.13.0-rc.15", path = "../" }
tremor-script = { version = "0.13.0-rc.15", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.15", path = "../tremor-value" }
tremor-common = { version = "0.13.0-rc.15", path = "../tremor-common" }
tremor-pipeline = { version = "0.13.0-rc.16", path = "../tremor-pipeline" }
tremor-runtime = { version = "0.13.0-rc.16", path = "../" }
tremor-script = { version = "0.13.0-rc.16", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.16", path = "../tremor-value" }
tremor-common = { version = "0.13.0-rc.16", path = "../tremor-common" }

[dev-dependencies]
surf = { version = "2.3", default-features = false, features = [
Expand Down
16 changes: 8 additions & 8 deletions tremor-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Tremor CLI Tool"
edition = "2021"
license = "Apache-2.0"
name = "tremor-cli"
version = "0.13.0-rc.15"
version = "0.13.0-rc.16"

[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
Expand Down Expand Up @@ -47,13 +47,13 @@ surf = { version = "=2.3.2", default-features = false, features = [
"h1-client-rustls",
"middleware-logger",
] }
tremor-api = { version = "0.13.0-rc.15", path = "../tremor-api" }
tremor-codec = { version = "0.13.0-rc.15", path = "../tremor-codec" }
tremor-common = { version = "0.13.0-rc.15", path = "../tremor-common" }
tremor-pipeline = { version = "0.13.0-rc.15", path = "../tremor-pipeline" }
tremor-runtime = { version = "0.13.0-rc.15", path = "../" }
tremor-script = { version = "0.13.0-rc.15", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.15", path = "../tremor-value" }
tremor-api = { version = "0.13.0-rc.16", path = "../tremor-api" }
tremor-codec = { version = "0.13.0-rc.16", path = "../tremor-codec" }
tremor-common = { version = "0.13.0-rc.16", path = "../tremor-common" }
tremor-pipeline = { version = "0.13.0-rc.16", path = "../tremor-pipeline" }
tremor-runtime = { version = "0.13.0-rc.16", path = "../" }
tremor-script = { version = "0.13.0-rc.16", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.16", path = "../tremor-value" }
url = "2"
# mimalloc-rs = { version = "0.1", default-features = true, optional = true }
# allocator_api = "0.6.0"
Expand Down
6 changes: 3 additions & 3 deletions tremor-codec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ documentation = "https://docs.rs/tremor-script"
license = "Apache-2.0"
readme = "README.md"
repository = "https://github.com/tremor-rs/tremor-runtime"
version = "0.13.0-rc.15"
version = "0.13.0-rc.16"


[dependencies]
tremor-value = { version = "0.13.0-rc.15", path = "../tremor-value" }
tremor-value = { version = "0.13.0-rc.16", path = "../tremor-value" }
tokio = { version = "1.32", features = ["full"] }
async-trait = "0.1"
error-chain = "0.12"
Expand All @@ -36,7 +36,7 @@ reqwest = { version = "0.11", default-features = false, features = [
"rustls-tls-native-roots",
] }
csv = "1.2"
tremor-influx = { version = "0.13.0-rc.15", path = "../tremor-influx" }
tremor-influx = { version = "0.13.0-rc.16", path = "../tremor-influx" }
simd-json = "0.11"
apache-avro = { version = "0.16", features = [
"snappy",
Expand Down
2 changes: 1 addition & 1 deletion tremor-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "tremor-common"
readme = "README.md"
version = "0.13.0-rc.15"
version = "0.13.0-rc.16"

[dependencies]
tokio = { version = "1", features = ["full"] }
Expand Down
2 changes: 1 addition & 1 deletion tremor-influx/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license = "Apache-2.0"
name = "tremor-influx"
readme = "README.md"
repository = "https://github.com/tremor-rs/tremor-runtime"
version = "0.13.0-rc.15"
version = "0.13.0-rc.16"

[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
Expand Down
8 changes: 4 additions & 4 deletions tremor-pipeline/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "Tremor Pipeline DAG Runtime"
edition = "2021"
license = "Apache-2.0"
name = "tremor-pipeline"
version = "0.13.0-rc.15"
version = "0.13.0-rc.16"

[dependencies]
tokio = "1"
Expand All @@ -25,9 +25,9 @@ serde_yaml = "0.9"
simd-json = { version = "0.11", features = ["known-key"] }
simd-json-derive = "0.11"
sled = "0.34"
tremor-common = { version = "0.13.0-rc.15", path = "../tremor-common" }
tremor-script = { version = "0.13.0-rc.15", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.15", path = "../tremor-value" }
tremor-common = { version = "0.13.0-rc.16", path = "../tremor-common" }
tremor-script = { version = "0.13.0-rc.16", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.16", path = "../tremor-value" }
url = "2"
value-trait = "0.6"
window = { git = "https://github.com/tremor-rs/window.git", tag = "v0.1.1" }
Expand Down
10 changes: 5 additions & 5 deletions tremor-script/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ license = "Apache-2.0"
name = "tremor-script"
readme = "README.md"
repository = "https://github.com/tremor-rs/tremor-runtime"
version = "0.13.0-rc.15"
version = "0.13.0-rc.16"

[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
Expand Down Expand Up @@ -52,10 +52,10 @@ simd-json-derive = "0.11"
sketches-ddsketch = "0.2"
strip-ansi-escapes = "0.2"
termcolor = "1.2"
tremor-common = { version = "0.13.0-rc.15", path = "../tremor-common" }
tremor-influx = { version = "0.13.0-rc.15", path = "../tremor-influx" }
tremor-value = { version = "0.13.0-rc.15", path = "../tremor-value" }
tremor-codec = { version = "0.13.0-rc.15", path = "../tremor-codec" }
tremor-common = { version = "0.13.0-rc.16", path = "../tremor-common" }
tremor-influx = { version = "0.13.0-rc.16", path = "../tremor-influx" }
tremor-value = { version = "0.13.0-rc.16", path = "../tremor-value" }
tremor-codec = { version = "0.13.0-rc.16", path = "../tremor-codec" }
tremor-kv = "0.6"
unicode-xid = "0.2"
url = "2"
Expand Down
4 changes: 2 additions & 2 deletions tremor-value/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ license = "Apache-2.0"
name = "tremor-value"
readme = "README.md"
repository = "https://github.com/tremor-rs/tremor-runtime"
version = "0.13.0-rc.15"
version = "0.13.0-rc.16"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand All @@ -19,7 +19,7 @@ serde = "1.0"
simd-json = "0.11"
simd-json-derive = "0.11"
value-trait = { version = "0.6", features = ["custom-types"] }
tremor-common = { version = "0.13.0-rc.15", path = "../tremor-common" }
tremor-common = { version = "0.13.0-rc.16", path = "../tremor-common" }

[dev-dependencies]
float-cmp = "0.9"
Expand Down

0 comments on commit f91e72e

Please sign in to comment.