Skip to content

Commit

Permalink
Prepare release 0.13.0-rc.17
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub actions <[email protected]>
  • Loading branch information
web-flow authored and darach committed Apr 9, 2024
1 parent 1262e36 commit 8005802
Show file tree
Hide file tree
Showing 18 changed files with 61 additions and 61 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Changelog

## Unreleased
## [0.13.0-rc.17]



Expand Down
30 changes: 15 additions & 15 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.16"
version = "0.13.0-rc.17"
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.77-bullseye as builder

RUN cargo install --features=ssl websocat

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

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

Expand Down
14 changes: 7 additions & 7 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.16"
version = "0.13.0-rc.17"

[dependencies]
halfbrown = "0.2"
Expand All @@ -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.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" }
tremor-system = { version = "0.13.0-rc.16", path = "../tremor-system" }
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" }

[dev-dependencies]
surf = { version = "2.3", default-features = false, features = [
Expand Down
20 changes: 10 additions & 10 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.16"
version = "0.13.0-rc.17"

[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
Expand Down Expand Up @@ -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.16", path = "../tremor-api" }
tremor-codec = { version = "0.13.0-rc.16", path = "../tremor-codec" }
tremor-interceptor = { version = "0.13.0-rc.16", path = "../tremor-interceptor" }
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" }
tremor-system = { version = "0.13.0-rc.16", path = "../tremor-system" }
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" }
url = "2"
error-chain = "0.12"
globwalk = "0.8"
Expand Down
10 changes: 5 additions & 5 deletions tremor-codec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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.16"
version = "0.13.0-rc.17"


[dependencies]
tremor-value = { version = "0.13.0-rc.16", path = "../tremor-value" }
tremor-common = { version = "0.13.0-rc.16", path = "../tremor-common" }
tremor-config = { version = "0.13.0-rc.16", path = "../tremor-config" }
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" }
tokio = { version = "1.34", features = ["full"] }
async-trait = "0.1"
error-chain = "0.12"
Expand Down Expand Up @@ -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.16", path = "../tremor-influx" }
tremor-influx = { version = "0.13.0-rc.17", path = "../tremor-influx" }
simd-json = "0.13"
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.16"
version = "0.13.0-rc.17"

[dependencies]
tokio = { version = "1", default-features = false, features = ["fs"] }
Expand Down
2 changes: 1 addition & 1 deletion tremor-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ 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.16"
version = "0.13.0-rc.17"

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

Expand Down
2 changes: 1 addition & 1 deletion tremor-connectors-aws/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tremor-connectors-aws"
version = "0.1.0"
version = "0.1.1-rc.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion tremor-connectors-gcp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tremor-connectors-gcp"
version = "0.1.0"
version = "0.1.1-rc.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
2 changes: 1 addition & 1 deletion tremor-connectors/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tremor-connectors"
version = "0.1.0"
version = "0.1.1-rc.1"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
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.16"
version = "0.13.0-rc.17"

[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
Expand Down
2 changes: 1 addition & 1 deletion tremor-interceptor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ 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.16"
version = "0.13.0-rc.17"
rust-version = "1.62"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand Down
12 changes: 6 additions & 6 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.16"
version = "0.13.0-rc.17"

[dependencies]
tokio = "1"
Expand All @@ -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.16", path = "../tremor-common" }
tremor-config = { version = "0.13.0-rc.16", path = "../tremor-config" }
tremor-script = { version = "0.13.0-rc.16", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.16", path = "../tremor-value" }
tremor-system = { version = "0.13.0-rc.16", path = "../tremor-system" }
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" }

url = "2"
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.16"
version = "0.13.0-rc.17"

[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
Expand Down Expand Up @@ -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.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-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-kv = "0.6"
unicode-xid = "0.2"
url = "2"
Expand Down
2 changes: 1 addition & 1 deletion tremor-system/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tremor-system"
version = "0.13.0-rc.16"
version = "0.13.0-rc.17"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
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.16"
version = "0.13.0-rc.17"

# 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.13"
simd-json-derive = "0.13"
value-trait = { version = "0.8", features = ["custom-types"] }
tremor-common = { version = "0.13.0-rc.16", path = "../tremor-common" }
tremor-common = { version = "0.13.0-rc.17", path = "../tremor-common" }

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

0 comments on commit 8005802

Please sign in to comment.