diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c60ad6fdc..94348a74ab 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## [0.13.0-rc.12] ### Fixes diff --git a/Cargo.lock b/Cargo.lock index 90d509427e..fc7b7fa31f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -5826,7 +5826,7 @@ dependencies = [ [[package]] name = "tremor-api" -version = "0.13.0-rc.11" +version = "0.13.0-rc.12" dependencies = [ "env_logger", "halfbrown", @@ -5847,7 +5847,7 @@ dependencies = [ [[package]] name = "tremor-cli" -version = "0.13.0-rc.11" +version = "0.13.0-rc.12" dependencies = [ "anyhow", "clap 4.2.1", @@ -5890,7 +5890,7 @@ dependencies = [ [[package]] name = "tremor-common" -version = "0.13.0-rc.11" +version = "0.13.0-rc.12" dependencies = [ "base64 0.21.0", "beef", @@ -5904,7 +5904,7 @@ dependencies = [ [[package]] name = "tremor-influx" -version = "0.13.0-rc.11" +version = "0.13.0-rc.12" dependencies = [ "criterion", "lexical", @@ -5938,7 +5938,7 @@ dependencies = [ [[package]] name = "tremor-pipeline" -version = "0.13.0-rc.11" +version = "0.13.0-rc.12" dependencies = [ "base64 0.21.0", "beef", @@ -5972,7 +5972,7 @@ dependencies = [ [[package]] name = "tremor-runtime" -version = "0.13.0-rc.11" +version = "0.13.0-rc.12" dependencies = [ "anyhow", "async-channel", @@ -6081,7 +6081,7 @@ dependencies = [ [[package]] name = "tremor-script" -version = "0.13.0-rc.11" +version = "0.13.0-rc.12" dependencies = [ "atty", "base64 0.21.0", @@ -6134,7 +6134,7 @@ dependencies = [ [[package]] name = "tremor-value" -version = "0.13.0-rc.11" +version = "0.13.0-rc.12" dependencies = [ "base64 0.21.0", "beef", diff --git a/Cargo.toml b/Cargo.toml index bc6679f709..bb61e65430 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.11" +version = "0.13.0-rc.12" rust-version = "1.62" [workspace] diff --git a/Dockerfile.learn b/Dockerfile.learn index fe77fc3549..57794eee90 100644 --- a/Dockerfile.learn +++ b/Dockerfile.learn @@ -2,7 +2,7 @@ FROM rust:1.68-bullseye as builder RUN cargo install --features=ssl websocat -FROM tremorproject/tremor:0.13.0-rc.11 +FROM tremorproject/tremor:0.13.0-rc.12 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 a1b49d1e29..068391482f 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.11" +version = "0.13.0-rc.12" [dependencies] halfbrown = "0.1" @@ -16,11 +16,11 @@ simd-json = "0.8" tokio = { version = "1.27", 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.11", path = "../tremor-pipeline" } -tremor-runtime = { version = "0.13.0-rc.11", path = "../" } -tremor-script = { version = "0.13.0-rc.11", path = "../tremor-script" } -tremor-value = { version = "0.13.0-rc.11", path = "../tremor-value" } -tremor-common = { version = "0.13.0-rc.11", path = "../tremor-common" } +tremor-pipeline = { version = "0.13.0-rc.12", path = "../tremor-pipeline" } +tremor-runtime = { version = "0.13.0-rc.12", path = "../" } +tremor-script = { version = "0.13.0-rc.12", path = "../tremor-script" } +tremor-value = { version = "0.13.0-rc.12", path = "../tremor-value" } +tremor-common = { version = "0.13.0-rc.12", 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 f54216d202..89ca86a7f5 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.11" +version = "0.13.0-rc.12" [package.metadata.docs.rs] default-target = "x86_64-unknown-linux-gnu" @@ -47,12 +47,12 @@ surf = { version = "=2.3.2", default-features = false, features = [ "h1-client-rustls", "middleware-logger", ] } -tremor-api = { version = "0.13.0-rc.11", path = "../tremor-api" } -tremor-common = { version = "0.13.0-rc.11", path = "../tremor-common" } -tremor-pipeline = { version = "0.13.0-rc.11", path = "../tremor-pipeline" } -tremor-runtime = { version = "0.13.0-rc.11", path = "../" } -tremor-script = { version = "0.13.0-rc.11", path = "../tremor-script" } -tremor-value = { version = "0.13.0-rc.11", path = "../tremor-value" } +tremor-api = { version = "0.13.0-rc.12", path = "../tremor-api" } +tremor-common = { version = "0.13.0-rc.12", path = "../tremor-common" } +tremor-pipeline = { version = "0.13.0-rc.12", path = "../tremor-pipeline" } +tremor-runtime = { version = "0.13.0-rc.12", path = "../" } +tremor-script = { version = "0.13.0-rc.12", path = "../tremor-script" } +tremor-value = { version = "0.13.0-rc.12", path = "../tremor-value" } url = "2" # mimalloc-rs = { version = "0.1", default-features = true, optional = true } # allocator_api = "0.6.0" diff --git a/tremor-common/Cargo.toml b/tremor-common/Cargo.toml index 9a7db1160b..3dc99907d3 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.11" +version = "0.13.0-rc.12" [dependencies] tokio = { version = "1.27", features = ["full"] } diff --git a/tremor-influx/Cargo.toml b/tremor-influx/Cargo.toml index 8db408fe67..11164ac931 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.11" +version = "0.13.0-rc.12" [package.metadata.docs.rs] default-target = "x86_64-unknown-linux-gnu" diff --git a/tremor-pipeline/Cargo.toml b/tremor-pipeline/Cargo.toml index d9319c9786..51bbea977a 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.11" +version = "0.13.0-rc.12" [dependencies] tokio = "1" @@ -25,9 +25,9 @@ serde_yaml = "0.9" simd-json = { version = "0.8", features = ["known-key"] } simd-json-derive = "0.8" sled = "0.34" -tremor-common = { version = "0.13.0-rc.11", path = "../tremor-common" } -tremor-script = { version = "0.13.0-rc.11", path = "../tremor-script" } -tremor-value = { version = "0.13.0-rc.11", path = "../tremor-value" } +tremor-common = { version = "0.13.0-rc.12", path = "../tremor-common" } +tremor-script = { version = "0.13.0-rc.12", path = "../tremor-script" } +tremor-value = { version = "0.13.0-rc.12", path = "../tremor-value" } url = "2.3.1" value-trait = "0.5" 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 5520be7d92..02baada795 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.11" +version = "0.13.0-rc.12" [package.metadata.docs.rs] default-target = "x86_64-unknown-linux-gnu" @@ -53,9 +53,9 @@ simd-json-derive = "0.8" sketches-ddsketch = "0.2.1" strip-ansi-escapes = "0.1" termcolor = "1.2" -tremor-common = { version = "0.13.0-rc.11", path = "../tremor-common" } -tremor-influx = { version = "0.13.0-rc.11", path = "../tremor-influx" } -tremor-value = { version = "0.13.0-rc.11", path = "../tremor-value" } +tremor-common = { version = "0.13.0-rc.12", path = "../tremor-common" } +tremor-influx = { version = "0.13.0-rc.12", path = "../tremor-influx" } +tremor-value = { version = "0.13.0-rc.12", path = "../tremor-value" } tremor-kv = "0.5" unicode-xid = "0.2" url = "2" diff --git a/tremor-value/Cargo.toml b/tremor-value/Cargo.toml index 14a126ba95..ef722bbcf9 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.11" +version = "0.13.0-rc.12" # 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.8" simd-json-derive = "0.8" value-trait = { version = "0.5", features = ["custom-types"] } -tremor-common = { version = "0.13.0-rc.11", path = "../tremor-common" } +tremor-common = { version = "0.13.0-rc.12", path = "../tremor-common" } [dev-dependencies] float-cmp = "0.9"