From f91e72ea5d7ea1834f7f72f51d437ca1b309cb80 Mon Sep 17 00:00:00 2001 From: GitHub actions Date: Tue, 10 Oct 2023 11:04:02 +0000 Subject: [PATCH] Prepare release 0.13.0-rc.16 Signed-off-by: GitHub actions --- Cargo.lock | 18 +++++++++--------- Cargo.toml | 2 +- Dockerfile.learn | 2 +- tremor-api/Cargo.toml | 12 ++++++------ tremor-cli/Cargo.toml | 16 ++++++++-------- tremor-codec/Cargo.toml | 6 +++--- tremor-common/Cargo.toml | 2 +- tremor-influx/Cargo.toml | 2 +- tremor-pipeline/Cargo.toml | 8 ++++---- tremor-script/Cargo.toml | 10 +++++----- tremor-value/Cargo.toml | 4 ++-- 11 files changed, 41 insertions(+), 41 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 1c9871e64b..cfdbde18fb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5988,7 +5988,7 @@ dependencies = [ [[package]] name = "tremor-api" -version = "0.13.0-rc.15" +version = "0.13.0-rc.16" dependencies = [ "env_logger", "halfbrown", @@ -6009,7 +6009,7 @@ dependencies = [ [[package]] name = "tremor-cli" -version = "0.13.0-rc.15" +version = "0.13.0-rc.16" dependencies = [ "anyhow", "clap", @@ -6053,7 +6053,7 @@ dependencies = [ [[package]] name = "tremor-codec" -version = "0.13.0-rc.15" +version = "0.13.0-rc.16" dependencies = [ "apache-avro", "async-trait", @@ -6086,7 +6086,7 @@ dependencies = [ [[package]] name = "tremor-common" -version = "0.13.0-rc.15" +version = "0.13.0-rc.16" dependencies = [ "base64 0.21.4", "beef", @@ -6100,7 +6100,7 @@ dependencies = [ [[package]] name = "tremor-influx" -version = "0.13.0-rc.15" +version = "0.13.0-rc.16" dependencies = [ "criterion", "lexical", @@ -6134,7 +6134,7 @@ dependencies = [ [[package]] name = "tremor-pipeline" -version = "0.13.0-rc.15" +version = "0.13.0-rc.16" dependencies = [ "base64 0.21.4", "beef", @@ -6168,7 +6168,7 @@ dependencies = [ [[package]] name = "tremor-runtime" -version = "0.13.0-rc.15" +version = "0.13.0-rc.16" dependencies = [ "anyhow", "async-channel", @@ -6275,7 +6275,7 @@ dependencies = [ [[package]] name = "tremor-script" -version = "0.13.0-rc.15" +version = "0.13.0-rc.16" dependencies = [ "atty", "base64 0.21.4", @@ -6328,7 +6328,7 @@ dependencies = [ [[package]] name = "tremor-value" -version = "0.13.0-rc.15" +version = "0.13.0-rc.16" dependencies = [ "base64 0.21.4", "beef", diff --git a/Cargo.toml b/Cargo.toml index 9e76e1ec40..2c19b53b21 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.15" +version = "0.13.0-rc.16" rust-version = "1.62" [workspace] diff --git a/Dockerfile.learn b/Dockerfile.learn index 08d982c647..9c0717ff36 100644 --- a/Dockerfile.learn +++ b/Dockerfile.learn @@ -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 diff --git a/tremor-api/Cargo.toml b/tremor-api/Cargo.toml index c0b2ba0eab..b91896a400 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.15" +version = "0.13.0-rc.16" [dependencies] halfbrown = "0.2" @@ -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 = [ diff --git a/tremor-cli/Cargo.toml b/tremor-cli/Cargo.toml index 0761d73a83..dd1d624271 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.15" +version = "0.13.0-rc.16" [package.metadata.docs.rs] default-target = "x86_64-unknown-linux-gnu" @@ -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" diff --git a/tremor-codec/Cargo.toml b/tremor-codec/Cargo.toml index 24b5f8b85c..909e922a59 100644 --- a/tremor-codec/Cargo.toml +++ b/tremor-codec/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.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" @@ -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", diff --git a/tremor-common/Cargo.toml b/tremor-common/Cargo.toml index e597f94828..c288d4ff96 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.15" +version = "0.13.0-rc.16" [dependencies] tokio = { version = "1", features = ["full"] } diff --git a/tremor-influx/Cargo.toml b/tremor-influx/Cargo.toml index 5cb74f6b8e..f9c128e51f 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.15" +version = "0.13.0-rc.16" [package.metadata.docs.rs] default-target = "x86_64-unknown-linux-gnu" diff --git a/tremor-pipeline/Cargo.toml b/tremor-pipeline/Cargo.toml index 846e59bc86..276b76b9f3 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.15" +version = "0.13.0-rc.16" [dependencies] tokio = "1" @@ -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" } diff --git a/tremor-script/Cargo.toml b/tremor-script/Cargo.toml index 0f29e858af..5d468d4223 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.15" +version = "0.13.0-rc.16" [package.metadata.docs.rs] default-target = "x86_64-unknown-linux-gnu" @@ -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" diff --git a/tremor-value/Cargo.toml b/tremor-value/Cargo.toml index 817c2b4a42..c5551ada3f 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.15" +version = "0.13.0-rc.16" # 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.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"