Skip to content

Commit

Permalink
Prepare release 0.13.0-rc.19
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 Licenser committed Apr 10, 2024
1 parent 0acb6c0 commit 64f49ce
Show file tree
Hide file tree
Showing 17 changed files with 99 additions and 99 deletions.
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.

26 changes: 13 additions & 13 deletions 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.18"
version = "0.13.0-rc.19"
rust-version = "1.62"

[workspace]
Expand Down Expand Up @@ -40,18 +40,18 @@ lto = "thin"
opt-level = 3

[dependencies]
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" }
tremor-codec = { path = "tremor-codec", version = "0.13.0-rc.19" }
tremor-common = { path = "tremor-common", version = "0.13.0-rc.19" }
tremor-config = { path = "tremor-config", version = "0.13.0-rc.19" }
tremor-connectors = { path = "tremor-connectors", version = "0.13.0-rc.19" }
tremor-connectors-aws = { path = "tremor-connectors-aws", version = "0.13.0-rc.19" }
tremor-connectors-gcp = { path = "tremor-connectors-gcp", version = "0.13.0-rc.19" }
tremor-influx = { path = "tremor-influx", version = "0.13.0-rc.19" }
tremor-interceptor = { path = "tremor-interceptor", version = "0.13.0-rc.19" }
tremor-pipeline = { path = "tremor-pipeline", version = "0.13.0-rc.19" }
tremor-script = { path = "tremor-script", version = "0.13.0-rc.19" }
tremor-system = { path = "tremor-system", version = "0.13.0-rc.19" }
tremor-value = { path = "tremor-value", version = "0.13.0-rc.19" }

tokio = { version = "1.34", features = ["full"] }
tokio-stream = "0.1"
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.18
FROM tremorproject/tremor:0.13.0-rc.19

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.18"
version = "0.13.0-rc.19"

[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.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" }
tremor-pipeline = { version = "0.13.0-rc.19", path = "../tremor-pipeline" }
tremor-runtime = { version = "0.13.0-rc.19", path = "../" }
tremor-script = { version = "0.13.0-rc.19", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.19", path = "../tremor-value" }
tremor-common = { version = "0.13.0-rc.19", path = "../tremor-common" }
tremor-system = { version = "0.13.0-rc.19", 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.18"
version = "0.13.0-rc.19"

[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.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" }
tremor-api = { version = "0.13.0-rc.19", path = "../tremor-api" }
tremor-codec = { version = "0.13.0-rc.19", path = "../tremor-codec" }
tremor-interceptor = { version = "0.13.0-rc.19", path = "../tremor-interceptor" }
tremor-common = { version = "0.13.0-rc.19", path = "../tremor-common" }
tremor-pipeline = { version = "0.13.0-rc.19", path = "../tremor-pipeline" }
tremor-runtime = { version = "0.13.0-rc.19", path = "../" }
tremor-script = { version = "0.13.0-rc.19", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.19", path = "../tremor-value" }
tremor-system = { version = "0.13.0-rc.19", 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.18"
version = "0.13.0-rc.19"


[dependencies]
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" }
tremor-value = { version = "0.13.0-rc.19", path = "../tremor-value" }
tremor-common = { version = "0.13.0-rc.19", path = "../tremor-common" }
tremor-config = { version = "0.13.0-rc.19", 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.18", path = "../tremor-influx" }
tremor-influx = { version = "0.13.0-rc.19", 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.18"
version = "0.13.0-rc.19"

[dependencies]
tokio = { version = "1", default-features = false, features = ["fs"] }
Expand Down
4 changes: 2 additions & 2 deletions tremor-config/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.18"
version = "0.13.0-rc.19"

# 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.18" }
tremor-value = { path = "../tremor-value", version = "0.13.0-rc.19" }
serde = "1"
simd-json = "0.13"
12 changes: 6 additions & 6 deletions tremor-connectors-aws/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[package]
name = "tremor-connectors-aws"
version = "0.13.0-rc.18"
version = "0.13.0-rc.19"
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.18", default-features = false, features = [
tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.19", default-features = false, features = [
"object-storage",
] }
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-common = { path = "../tremor-common", version = "0.13.0-rc.19" }
tremor-system = { path = "../tremor-system", version = "0.13.0-rc.19" }
tremor-value = { path = "../tremor-value", version = "0.13.0-rc.19" }
tremor-config = { path = "../tremor-config", version = "0.13.0-rc.19" }


async-trait = { version = "0.1", default-features = false }
Expand Down
16 changes: 8 additions & 8 deletions tremor-connectors-gcp/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
[package]
name = "tremor-connectors-gcp"
version = "0.13.0-rc.18"
version = "0.13.0-rc.19"
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.18", default-features = false, features = [
tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.19", default-features = false, features = [
"object-storage",
"protobuf",
] }
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" }
tremor-common = { path = "../tremor-common", version = "0.13.0-rc.19" }
tremor-system = { path = "../tremor-system", version = "0.13.0-rc.19" }
tremor-value = { path = "../tremor-value", version = "0.13.0-rc.19" }
tremor-config = { path = "../tremor-config", version = "0.13.0-rc.19" }
tremor-script = { path = "../tremor-script", version = "0.13.0-rc.19" }

anyhow = { version = "1", default-features = true }
async-trait = { version = "0.1", default-features = true }
Expand Down Expand Up @@ -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.18" }
tremor-codec = { path = "../tremor-codec", version = "0.13.0-rc.19" }
tempfile = { version = "3", default-features = true }
env_logger = { version = "0.11", default-features = true }
tremor-connectors = { path = "../tremor-connectors", default-features = false, features = [
Expand Down
18 changes: 9 additions & 9 deletions tremor-connectors/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
[package]
name = "tremor-connectors"
version = "0.13.0-rc.18"
version = "0.13.0-rc.19"
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.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" }
tremor-common = { path = "../tremor-common", version = "0.13.0-rc.19" }
tremor-config = { path = "../tremor-config", version = "0.13.0-rc.19" }
tremor-codec = { path = "../tremor-codec", version = "0.13.0-rc.19" }
tremor-pipeline = { path = "../tremor-pipeline", version = "0.13.0-rc.19" }
tremor-script = { path = "../tremor-script", version = "0.13.0-rc.19" }
tremor-value = { path = "../tremor-value", version = "0.13.0-rc.19" }
tremor-interceptor = { path = "../tremor-interceptor", version = "0.13.0-rc.19" }
tremor-system = { path = "../tremor-system", version = "0.13.0-rc.19" }

beef = { version = "0.5", default-features = false }
value-trait = { version = "0.8", default-features = false }
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.18"
version = "0.13.0-rc.19"

[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
Expand Down
Loading

0 comments on commit 64f49ce

Please sign in to comment.