From 368e0e73eb733348844b6795a84818fca0a98c01 Mon Sep 17 00:00:00 2001 From: GitHub actions Date: Wed, 10 Apr 2024 12:39:12 +0000 Subject: [PATCH] Prepare release 0.13.0-rc.18 Signed-off-by: GitHub actions --- Cargo.lock | 30 +++++++++++++++--------------- Cargo.toml | 26 +++++++++++++------------- Dockerfile.learn | 2 +- tremor-api/Cargo.toml | 14 +++++++------- tremor-cli/Cargo.toml | 20 ++++++++++---------- tremor-codec/Cargo.toml | 10 +++++----- tremor-common/Cargo.toml | 2 +- tremor-config/Cargo.toml | 4 ++-- tremor-connectors-aws/Cargo.toml | 12 ++++++------ tremor-connectors-gcp/Cargo.toml | 16 ++++++++-------- tremor-connectors/Cargo.toml | 18 +++++++++--------- tremor-influx/Cargo.toml | 2 +- tremor-interceptor/Cargo.toml | 8 ++++---- tremor-pipeline/Cargo.toml | 12 ++++++------ tremor-script/Cargo.toml | 10 +++++----- tremor-system/Cargo.toml | 8 ++++---- tremor-value/Cargo.toml | 4 ++-- 17 files changed, 99 insertions(+), 99 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 90a8997b00..d29d55b8c4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6283,7 +6283,7 @@ dependencies = [ [[package]] name = "tremor-api" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" dependencies = [ "env_logger 0.10.2", "halfbrown", @@ -6305,7 +6305,7 @@ dependencies = [ [[package]] name = "tremor-cli" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" dependencies = [ "anyhow", "clap", @@ -6351,7 +6351,7 @@ dependencies = [ [[package]] name = "tremor-codec" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" dependencies = [ "apache-avro", "async-recursion", @@ -6387,7 +6387,7 @@ dependencies = [ [[package]] name = "tremor-common" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" dependencies = [ "base64 0.21.7", "beef", @@ -6406,7 +6406,7 @@ dependencies = [ [[package]] name = "tremor-config" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" dependencies = [ "serde", "simd-json", @@ -6415,7 +6415,7 @@ dependencies = [ [[package]] name = "tremor-connectors" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" dependencies = [ "anyhow", "async-channel 1.9.0", @@ -6497,7 +6497,7 @@ dependencies = [ [[package]] name = "tremor-connectors-aws" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" dependencies = [ "anyhow", "async-channel 2.2.0", @@ -6524,7 +6524,7 @@ dependencies = [ [[package]] name = "tremor-connectors-gcp" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" dependencies = [ "anyhow", "async-channel 1.9.0", @@ -6564,7 +6564,7 @@ dependencies = [ [[package]] name = "tremor-influx" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" dependencies = [ "criterion", "lexical", @@ -6576,7 +6576,7 @@ dependencies = [ [[package]] name = "tremor-interceptor" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" dependencies = [ "anyhow", "byteorder", @@ -6624,7 +6624,7 @@ dependencies = [ [[package]] name = "tremor-pipeline" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" dependencies = [ "beef", "criterion", @@ -6658,7 +6658,7 @@ dependencies = [ [[package]] name = "tremor-runtime" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" dependencies = [ "anyhow", "async-trait", @@ -6699,7 +6699,7 @@ dependencies = [ [[package]] name = "tremor-script" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" dependencies = [ "atty", "beef", @@ -6750,7 +6750,7 @@ dependencies = [ [[package]] name = "tremor-system" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" dependencies = [ "anyhow", "either", @@ -6767,7 +6767,7 @@ dependencies = [ [[package]] name = "tremor-value" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" dependencies = [ "base64 0.21.7", "beef", diff --git a/Cargo.toml b/Cargo.toml index 1ebce46e60..18bfba7e91 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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.17" +version = "0.13.0-rc.18" rust-version = "1.62" [workspace] @@ -40,18 +40,18 @@ lto = "thin" opt-level = 3 [dependencies] -tremor-codec = { path = "tremor-codec", version = "0.13.0-rc.17" } -tremor-common = { path = "tremor-common", version = "0.13.0-rc.17" } -tremor-config = { path = "tremor-config", version = "0.13.0-rc.17" } -tremor-connectors = { path = "tremor-connectors", version = "0.13.0-rc.17" } -tremor-connectors-aws = { path = "tremor-connectors-aws", version = "0.13.0-rc.17" } -tremor-connectors-gcp = { path = "tremor-connectors-gcp", version = "0.13.0-rc.17" } -tremor-influx = { path = "tremor-influx", version = "0.13.0-rc.17" } -tremor-interceptor = { path = "tremor-interceptor", version = "0.13.0-rc.17" } -tremor-pipeline = { path = "tremor-pipeline", version = "0.13.0-rc.17" } -tremor-script = { path = "tremor-script", version = "0.13.0-rc.17" } -tremor-system = { path = "tremor-system", version = "0.13.0-rc.17" } -tremor-value = { path = "tremor-value", version = "0.13.0-rc.17" } +tremor-codec = { path = "tremor-codec", version = "0.13.0-rc.18" } +tremor-common = { path = "tremor-common", version = "0.13.0-rc.18" } +tremor-config = { path = "tremor-config", version = "0.13.0-rc.18" } +tremor-connectors = { path = "tremor-connectors", version = "0.13.0-rc.18" } +tremor-connectors-aws = { path = "tremor-connectors-aws", version = "0.13.0-rc.18" } +tremor-connectors-gcp = { path = "tremor-connectors-gcp", version = "0.13.0-rc.18" } +tremor-influx = { path = "tremor-influx", version = "0.13.0-rc.18" } +tremor-interceptor = { path = "tremor-interceptor", version = "0.13.0-rc.18" } +tremor-pipeline = { path = "tremor-pipeline", version = "0.13.0-rc.18" } +tremor-script = { path = "tremor-script", version = "0.13.0-rc.18" } +tremor-system = { path = "tremor-system", version = "0.13.0-rc.18" } +tremor-value = { path = "tremor-value", version = "0.13.0-rc.18" } tokio = { version = "1.34", features = ["full"] } tokio-stream = "0.1" diff --git a/Dockerfile.learn b/Dockerfile.learn index 0c34241143..4e19671f07 100644 --- a/Dockerfile.learn +++ b/Dockerfile.learn @@ -2,7 +2,7 @@ FROM rust:1.77-bullseye as builder RUN cargo install --features=ssl websocat -FROM tremorproject/tremor:0.13.0-rc.17 +FROM tremorproject/tremor:0.13.0-rc.18 COPY --from=builder /usr/local/cargo/bin/websocat /usr/local/bin/websocat diff --git a/tremor-api/Cargo.toml b/tremor-api/Cargo.toml index 82020d4bd5..aae3ba3dae 100644 --- a/tremor-api/Cargo.toml +++ b/tremor-api/Cargo.toml @@ -4,7 +4,7 @@ description = "Tremor Api Callbacks" edition = "2021" license = "Apache-2.0" name = "tremor-api" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" [dependencies] halfbrown = "0.2" @@ -16,12 +16,12 @@ simd-json = "0.13" tokio = { version = "1.34", 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.17", path = "../tremor-pipeline" } -tremor-runtime = { version = "0.13.0-rc.17", path = "../" } -tremor-script = { version = "0.13.0-rc.17", path = "../tremor-script" } -tremor-value = { version = "0.13.0-rc.17", path = "../tremor-value" } -tremor-common = { version = "0.13.0-rc.17", path = "../tremor-common" } -tremor-system = { version = "0.13.0-rc.17", path = "../tremor-system" } +tremor-pipeline = { version = "0.13.0-rc.18", path = "../tremor-pipeline" } +tremor-runtime = { version = "0.13.0-rc.18", path = "../" } +tremor-script = { version = "0.13.0-rc.18", path = "../tremor-script" } +tremor-value = { version = "0.13.0-rc.18", path = "../tremor-value" } +tremor-common = { version = "0.13.0-rc.18", path = "../tremor-common" } +tremor-system = { version = "0.13.0-rc.18", path = "../tremor-system" } [dev-dependencies] surf = { version = "2.3", default-features = false, features = [ diff --git a/tremor-cli/Cargo.toml b/tremor-cli/Cargo.toml index 304dde20ef..5d94907f8d 100644 --- a/tremor-cli/Cargo.toml +++ b/tremor-cli/Cargo.toml @@ -4,7 +4,7 @@ description = "Tremor CLI Tool" edition = "2021" license = "Apache-2.0" name = "tremor-cli" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" [package.metadata.docs.rs] default-target = "x86_64-unknown-linux-gnu" @@ -45,15 +45,15 @@ surf = { version = "=2.3.2", default-features = false, features = [ "h1-client-rustls", "middleware-logger", ] } -tremor-api = { version = "0.13.0-rc.17", path = "../tremor-api" } -tremor-codec = { version = "0.13.0-rc.17", path = "../tremor-codec" } -tremor-interceptor = { version = "0.13.0-rc.17", path = "../tremor-interceptor" } -tremor-common = { version = "0.13.0-rc.17", path = "../tremor-common" } -tremor-pipeline = { version = "0.13.0-rc.17", path = "../tremor-pipeline" } -tremor-runtime = { version = "0.13.0-rc.17", path = "../" } -tremor-script = { version = "0.13.0-rc.17", path = "../tremor-script" } -tremor-value = { version = "0.13.0-rc.17", path = "../tremor-value" } -tremor-system = { version = "0.13.0-rc.17", path = "../tremor-system" } +tremor-api = { version = "0.13.0-rc.18", path = "../tremor-api" } +tremor-codec = { version = "0.13.0-rc.18", path = "../tremor-codec" } +tremor-interceptor = { version = "0.13.0-rc.18", path = "../tremor-interceptor" } +tremor-common = { version = "0.13.0-rc.18", path = "../tremor-common" } +tremor-pipeline = { version = "0.13.0-rc.18", path = "../tremor-pipeline" } +tremor-runtime = { version = "0.13.0-rc.18", path = "../" } +tremor-script = { version = "0.13.0-rc.18", path = "../tremor-script" } +tremor-value = { version = "0.13.0-rc.18", path = "../tremor-value" } +tremor-system = { version = "0.13.0-rc.18", path = "../tremor-system" } url = "2" error-chain = "0.12" globwalk = "0.8" diff --git a/tremor-codec/Cargo.toml b/tremor-codec/Cargo.toml index 34ab1931b8..7adbe3ab00 100644 --- a/tremor-codec/Cargo.toml +++ b/tremor-codec/Cargo.toml @@ -7,13 +7,13 @@ 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.17" +version = "0.13.0-rc.18" [dependencies] -tremor-value = { version = "0.13.0-rc.17", path = "../tremor-value" } -tremor-common = { version = "0.13.0-rc.17", path = "../tremor-common" } -tremor-config = { version = "0.13.0-rc.17", path = "../tremor-config" } +tremor-value = { version = "0.13.0-rc.18", path = "../tremor-value" } +tremor-common = { version = "0.13.0-rc.18", path = "../tremor-common" } +tremor-config = { version = "0.13.0-rc.18", path = "../tremor-config" } tokio = { version = "1.34", features = ["full"] } async-trait = "0.1" error-chain = "0.12" @@ -43,7 +43,7 @@ reqwest = { version = "0.11", default-features = false, features = [ "rustls-tls-native-roots", ] } csv = "1.2" -tremor-influx = { version = "0.13.0-rc.17", path = "../tremor-influx" } +tremor-influx = { version = "0.13.0-rc.18", path = "../tremor-influx" } simd-json = "0.13" apache-avro = { version = "0.16", features = [ "snappy", diff --git a/tremor-common/Cargo.toml b/tremor-common/Cargo.toml index 0ac21f9243..c376975812 100644 --- a/tremor-common/Cargo.toml +++ b/tremor-common/Cargo.toml @@ -6,7 +6,7 @@ edition = "2021" license = "Apache-2.0" name = "tremor-common" readme = "README.md" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" [dependencies] tokio = { version = "1", default-features = false, features = ["fs"] } diff --git a/tremor-config/Cargo.toml b/tremor-config/Cargo.toml index 48c9a6b920..065c530ea5 100644 --- a/tremor-config/Cargo.toml +++ b/tremor-config/Cargo.toml @@ -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.17" +version = "0.13.0-rc.18" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.17" } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.18" } serde = "1" simd-json = "0.13" diff --git a/tremor-connectors-aws/Cargo.toml b/tremor-connectors-aws/Cargo.toml index 7bd6e18e4d..ebf346a9a9 100644 --- a/tremor-connectors-aws/Cargo.toml +++ b/tremor-connectors-aws/Cargo.toml @@ -1,18 +1,18 @@ [package] name = "tremor-connectors-aws" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.17", default-features = false, features = [ +tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.18", default-features = false, features = [ "object-storage", ] } -tremor-common = { path = "../tremor-common", version = "0.13.0-rc.17" } -tremor-system = { path = "../tremor-system", version = "0.13.0-rc.17" } -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.17" } -tremor-config = { path = "../tremor-config", version = "0.13.0-rc.17" } +tremor-common = { path = "../tremor-common", version = "0.13.0-rc.18" } +tremor-system = { path = "../tremor-system", version = "0.13.0-rc.18" } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.18" } +tremor-config = { path = "../tremor-config", version = "0.13.0-rc.18" } async-trait = { version = "0.1", default-features = false } diff --git a/tremor-connectors-gcp/Cargo.toml b/tremor-connectors-gcp/Cargo.toml index 481a37b650..71a675887e 100644 --- a/tremor-connectors-gcp/Cargo.toml +++ b/tremor-connectors-gcp/Cargo.toml @@ -1,20 +1,20 @@ [package] name = "tremor-connectors-gcp" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.17", default-features = false, features = [ +tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.18", default-features = false, features = [ "object-storage", "protobuf", ] } -tremor-common = { path = "../tremor-common", version = "0.13.0-rc.17" } -tremor-system = { path = "../tremor-system", version = "0.13.0-rc.17" } -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.17" } -tremor-config = { path = "../tremor-config", version = "0.13.0-rc.17" } -tremor-script = { path = "../tremor-script", version = "0.13.0-rc.17" } +tremor-common = { path = "../tremor-common", version = "0.13.0-rc.18" } +tremor-system = { path = "../tremor-system", version = "0.13.0-rc.18" } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.18" } +tremor-config = { path = "../tremor-config", version = "0.13.0-rc.18" } +tremor-script = { path = "../tremor-script", version = "0.13.0-rc.18" } anyhow = { version = "1", default-features = true } async-trait = { version = "0.1", default-features = true } @@ -70,7 +70,7 @@ tokio = { version = "1.34", default-features = true } value-trait = { version = "0.8" } test-case = { version = "3", default-features = true } anyhow = { version = "1" } -tremor-codec = { path = "../tremor-codec", version = "0.13.0-rc.17" } +tremor-codec = { path = "../tremor-codec", version = "0.13.0-rc.18" } tempfile = { version = "3", default-features = true } env_logger = { version = "0.11", default-features = true } tremor-connectors = { path = "../tremor-connectors", default-features = false, features = [ diff --git a/tremor-connectors/Cargo.toml b/tremor-connectors/Cargo.toml index 63b0438b21..b42d6fe004 100644 --- a/tremor-connectors/Cargo.toml +++ b/tremor-connectors/Cargo.toml @@ -1,19 +1,19 @@ [package] name = "tremor-connectors" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tremor-common = { path = "../tremor-common", version = "0.13.0-rc.17" } -tremor-config = { path = "../tremor-config", version = "0.13.0-rc.17" } -tremor-codec = { path = "../tremor-codec", version = "0.13.0-rc.17" } -tremor-pipeline = { path = "../tremor-pipeline", version = "0.13.0-rc.17" } -tremor-script = { path = "../tremor-script", version = "0.13.0-rc.17" } -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.17" } -tremor-interceptor = { path = "../tremor-interceptor", version = "0.13.0-rc.17" } -tremor-system = { path = "../tremor-system", version = "0.13.0-rc.17" } +tremor-common = { path = "../tremor-common", version = "0.13.0-rc.18" } +tremor-config = { path = "../tremor-config", version = "0.13.0-rc.18" } +tremor-codec = { path = "../tremor-codec", version = "0.13.0-rc.18" } +tremor-pipeline = { path = "../tremor-pipeline", version = "0.13.0-rc.18" } +tremor-script = { path = "../tremor-script", version = "0.13.0-rc.18" } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.18" } +tremor-interceptor = { path = "../tremor-interceptor", version = "0.13.0-rc.18" } +tremor-system = { path = "../tremor-system", version = "0.13.0-rc.18" } beef = { version = "0.5", default-features = false } value-trait = { version = "0.8", default-features = false } diff --git a/tremor-influx/Cargo.toml b/tremor-influx/Cargo.toml index d6ae23c8de..2a8d21660a 100644 --- a/tremor-influx/Cargo.toml +++ b/tremor-influx/Cargo.toml @@ -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.17" +version = "0.13.0-rc.18" [package.metadata.docs.rs] default-target = "x86_64-unknown-linux-gnu" diff --git a/tremor-interceptor/Cargo.toml b/tremor-interceptor/Cargo.toml index 481138f0f7..6da1177441 100644 --- a/tremor-interceptor/Cargo.toml +++ b/tremor-interceptor/Cargo.toml @@ -8,16 +8,16 @@ homepage = "https://www.tremor.rs" license = "Apache-2.0" readme = "README.md" repository = "https://github.com/tremor-rs/tremor-runtime" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" rust-version = "1.62" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] error-chain = "0.12" -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.17" } -tremor-config = { path = "../tremor-config", version = "0.13.0-rc.17" } -tremor-common = { path = "../tremor-common", version = "0.13.0-rc.17" } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.18" } +tremor-config = { path = "../tremor-config", version = "0.13.0-rc.18" } +tremor-common = { path = "../tremor-common", version = "0.13.0-rc.18" } log = "0.4" serde = { version = "1", features = ["derive"] } simd-json = "0.13" diff --git a/tremor-pipeline/Cargo.toml b/tremor-pipeline/Cargo.toml index b4040caadf..edcb06f9ff 100644 --- a/tremor-pipeline/Cargo.toml +++ b/tremor-pipeline/Cargo.toml @@ -4,7 +4,7 @@ description = "Tremor Pipeline DAG Runtime" edition = "2021" license = "Apache-2.0" name = "tremor-pipeline" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" [dependencies] tokio = "1" @@ -25,11 +25,11 @@ simd-json = { version = "0.13", features = ["known-key"] } simd-json-derive = "0.13" value-trait = "0.8" sled = "0.34" -tremor-common = { version = "0.13.0-rc.17", path = "../tremor-common" } -tremor-config = { version = "0.13.0-rc.17", path = "../tremor-config" } -tremor-script = { version = "0.13.0-rc.17", path = "../tremor-script" } -tremor-value = { version = "0.13.0-rc.17", path = "../tremor-value" } -tremor-system = { version = "0.13.0-rc.17", path = "../tremor-system" } +tremor-common = { version = "0.13.0-rc.18", path = "../tremor-common" } +tremor-config = { version = "0.13.0-rc.18", path = "../tremor-config" } +tremor-script = { version = "0.13.0-rc.18", path = "../tremor-script" } +tremor-value = { version = "0.13.0-rc.18", path = "../tremor-value" } +tremor-system = { version = "0.13.0-rc.18", path = "../tremor-system" } url = "2" fenster = { version = "0.1.1" } diff --git a/tremor-script/Cargo.toml b/tremor-script/Cargo.toml index dfc181ea70..bf9d923e59 100644 --- a/tremor-script/Cargo.toml +++ b/tremor-script/Cargo.toml @@ -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.17" +version = "0.13.0-rc.18" [package.metadata.docs.rs] default-target = "x86_64-unknown-linux-gnu" @@ -51,10 +51,10 @@ value-trait = "0.8" sketches-ddsketch = "0.2" strip-ansi-escapes = "0.2" termcolor = "1.4" -tremor-common = { version = "0.13.0-rc.17", path = "../tremor-common" } -tremor-influx = { version = "0.13.0-rc.17", path = "../tremor-influx" } -tremor-value = { version = "0.13.0-rc.17", path = "../tremor-value" } -tremor-codec = { version = "0.13.0-rc.17", path = "../tremor-codec" } +tremor-common = { version = "0.13.0-rc.18", path = "../tremor-common" } +tremor-influx = { version = "0.13.0-rc.18", path = "../tremor-influx" } +tremor-value = { version = "0.13.0-rc.18", path = "../tremor-value" } +tremor-codec = { version = "0.13.0-rc.18", path = "../tremor-codec" } tremor-kv = "0.6" unicode-xid = "0.2" url = "2" diff --git a/tremor-system/Cargo.toml b/tremor-system/Cargo.toml index fe65e2119e..0675d76a7b 100644 --- a/tremor-system/Cargo.toml +++ b/tremor-system/Cargo.toml @@ -1,13 +1,13 @@ [package] name = "tremor-system" -version = "0.13.0-rc.17" +version = "0.13.0-rc.18" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -tremor-common = { path = "../tremor-common", version = "0.13.0-rc.17" } -tremor-script = { path = "../tremor-script", version = "0.13.0-rc.17" } +tremor-common = { path = "../tremor-common", version = "0.13.0-rc.18" } +tremor-script = { path = "../tremor-script", version = "0.13.0-rc.18" } tokio = { version = "1.34", default-features = false } anyhow = { version = "1.0", default-features = true } @@ -19,4 +19,4 @@ simd-json = { version = "0.13", default-features = false } either = { version = "1.6", default-features = false } [dev-dependencies] -tremor-value = { path = "../tremor-value", version = "0.13.0-rc.17" } +tremor-value = { path = "../tremor-value", version = "0.13.0-rc.18" } diff --git a/tremor-value/Cargo.toml b/tremor-value/Cargo.toml index 03bfee1813..d348d32796 100644 --- a/tremor-value/Cargo.toml +++ b/tremor-value/Cargo.toml @@ -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.17" +version = "0.13.0-rc.18" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -19,7 +19,7 @@ serde = "1.0" simd-json = "0.13" simd-json-derive = "0.13" value-trait = { version = "0.8", features = ["custom-types"] } -tremor-common = { version = "0.13.0-rc.17", path = "../tremor-common" } +tremor-common = { version = "0.13.0-rc.18", path = "../tremor-common" } [dev-dependencies] float-cmp = "0.9"