Skip to content

Commit 6a96e7f

Browse files
web-flowLicenser
authored andcommitted
Prepare release 0.13.0-rc.33
Signed-off-by: GitHub actions <noreply@github.com>
1 parent be70b02 commit 6a96e7f

File tree

22 files changed

+135
-135
lines changed

22 files changed

+135
-135
lines changed

Cargo.lock

Lines changed: 20 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ license = "Apache-2.0"
99
name = "tremor-runtime"
1010
readme = "README.md"
1111
repository = "https://github.com/tremor-rs/tremor-runtime"
12-
version = "0.13.0-rc.32"
12+
version = "0.13.0-rc.33"
1313
rust-version = "1.76"
1414

1515
[workspace]
@@ -45,21 +45,21 @@ lto = "thin"
4545
opt-level = 3
4646

4747
[dependencies]
48-
tremor-codec = { path = "tremor-codec", version = "0.13.0-rc.32" }
49-
tremor-common = { path = "tremor-common", version = "0.13.0-rc.32" }
50-
tremor-config = { path = "tremor-config", version = "0.13.0-rc.32" }
51-
tremor-connectors = { path = "tremor-connectors", version = "0.13.0-rc.32", default-features = false }
52-
tremor-connectors-aws = { path = "tremor-connectors-aws", version = "0.13.0-rc.32", optional = true }
53-
tremor-connectors-azure = { path = "tremor-connectors-azure", version = "0.13.0-rc.32", optional = true }
54-
tremor-connectors-gcp = { path = "tremor-connectors-gcp", version = "0.13.0-rc.32", optional = true }
55-
tremor-connectors-otel = { path = "tremor-connectors-otel", version = "0.13.0-rc.32", optional = true }
56-
tremor-influx = { path = "tremor-influx", version = "0.13.0-rc.32" }
57-
tremor-interceptor = { path = "tremor-interceptor", version = "0.13.0-rc.32" }
58-
tremor-pipeline = { path = "tremor-pipeline", version = "0.13.0-rc.32" }
59-
tremor-script = { path = "tremor-script", version = "0.13.0-rc.32" }
60-
tremor-system = { path = "tremor-system", version = "0.13.0-rc.32" }
61-
tremor-value = { path = "tremor-value", version = "0.13.0-rc.32" }
62-
tremor-archive = { path = "tremor-archive", version = "0.13.0-rc.32" }
48+
tremor-codec = { path = "tremor-codec", version = "0.13.0-rc.33" }
49+
tremor-common = { path = "tremor-common", version = "0.13.0-rc.33" }
50+
tremor-config = { path = "tremor-config", version = "0.13.0-rc.33" }
51+
tremor-connectors = { path = "tremor-connectors", version = "0.13.0-rc.33", default-features = false }
52+
tremor-connectors-aws = { path = "tremor-connectors-aws", version = "0.13.0-rc.33", optional = true }
53+
tremor-connectors-azure = { path = "tremor-connectors-azure", version = "0.13.0-rc.33", optional = true }
54+
tremor-connectors-gcp = { path = "tremor-connectors-gcp", version = "0.13.0-rc.33", optional = true }
55+
tremor-connectors-otel = { path = "tremor-connectors-otel", version = "0.13.0-rc.33", optional = true }
56+
tremor-influx = { path = "tremor-influx", version = "0.13.0-rc.33" }
57+
tremor-interceptor = { path = "tremor-interceptor", version = "0.13.0-rc.33" }
58+
tremor-pipeline = { path = "tremor-pipeline", version = "0.13.0-rc.33" }
59+
tremor-script = { path = "tremor-script", version = "0.13.0-rc.33" }
60+
tremor-system = { path = "tremor-system", version = "0.13.0-rc.33" }
61+
tremor-value = { path = "tremor-value", version = "0.13.0-rc.33" }
62+
tremor-archive = { path = "tremor-archive", version = "0.13.0-rc.33" }
6363

6464
tokio = { version = "1.39", features = ["full"] }
6565
tokio-stream = "0.1"

Dockerfile.learn

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM rust:1.82-bullseye as builder
22

33
RUN cargo install --features=ssl websocat
44

5-
FROM tremorproject/tremor:0.13.0-rc.32
5+
FROM tremorproject/tremor:0.13.0-rc.33
66

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

tremor-api/Cargo.toml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Tremor Api Callbacks"
44
edition = "2021"
55
license = "Apache-2.0"
66
name = "tremor-api"
7-
version = "0.13.0-rc.32"
7+
version = "0.13.0-rc.33"
88
homepage = "https://www.tremor.rs"
99

1010
[dependencies]
@@ -17,12 +17,12 @@ simd-json = "0.13"
1717
tokio = { version = "1.39", features = ["full"] }
1818
# we don't need sessions or cookies or shitty logging middleware
1919
tide = { version = "0.16", default-features = false, features = ["h1-server"] }
20-
tremor-pipeline = { version = "0.13.0-rc.32", path = "../tremor-pipeline" }
21-
tremor-runtime = { version = "0.13.0-rc.32", path = "../" }
22-
tremor-script = { version = "0.13.0-rc.32", path = "../tremor-script" }
23-
tremor-value = { version = "0.13.0-rc.32", path = "../tremor-value" }
24-
tremor-common = { version = "0.13.0-rc.32", path = "../tremor-common" }
25-
tremor-system = { version = "0.13.0-rc.32", path = "../tremor-system" }
20+
tremor-pipeline = { version = "0.13.0-rc.33", path = "../tremor-pipeline" }
21+
tremor-runtime = { version = "0.13.0-rc.33", path = "../" }
22+
tremor-script = { version = "0.13.0-rc.33", path = "../tremor-script" }
23+
tremor-value = { version = "0.13.0-rc.33", path = "../tremor-value" }
24+
tremor-common = { version = "0.13.0-rc.33", path = "../tremor-common" }
25+
tremor-system = { version = "0.13.0-rc.33", path = "../tremor-system" }
2626

2727
[dev-dependencies]
2828
surf = { version = "2.3", default-features = false, features = [

tremor-archive/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,11 @@ homepage = "https://www.tremor.rs"
88
license = "Apache-2.0"
99
readme = "README.md"
1010
repository = "https://github.com/tremor-rs/tremor-runtime"
11-
version = "0.13.0-rc.32"
11+
version = "0.13.0-rc.33"
1212

1313
[dependencies]
14-
tremor-common = { path = "../tremor-common", version = "0.13.0-rc.32" }
15-
tremor-script = { path = "../tremor-script", version = "0.13.0-rc.32" }
14+
tremor-common = { path = "../tremor-common", version = "0.13.0-rc.33" }
15+
tremor-script = { path = "../tremor-script", version = "0.13.0-rc.33" }
1616

1717
tokio = { version = "1", default-features = false, features = [] }
1818
tokio-tar = "0.3"

tremor-cli/Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "Tremor CLI Tool"
44
edition = "2021"
55
license = "Apache-2.0"
66
name = "tremor-cli"
7-
version = "0.13.0-rc.32"
7+
version = "0.13.0-rc.33"
88
homepage = "https://www.tremor.rs"
99

1010
[package.metadata.docs.rs]
@@ -46,16 +46,16 @@ surf = { version = "=2.3.2", default-features = false, features = [
4646
"h1-client-rustls",
4747
"middleware-logger",
4848
] }
49-
tremor-api = { version = "0.13.0-rc.32", path = "../tremor-api" }
50-
tremor-codec = { version = "0.13.0-rc.32", path = "../tremor-codec" }
51-
tremor-interceptor = { version = "0.13.0-rc.32", path = "../tremor-interceptor" }
52-
tremor-common = { version = "0.13.0-rc.32", path = "../tremor-common" }
53-
tremor-pipeline = { version = "0.13.0-rc.32", path = "../tremor-pipeline" }
54-
tremor-runtime = { version = "0.13.0-rc.32", path = "../" }
55-
tremor-script = { version = "0.13.0-rc.32", path = "../tremor-script" }
56-
tremor-value = { version = "0.13.0-rc.32", path = "../tremor-value" }
57-
tremor-system = { version = "0.13.0-rc.32", path = "../tremor-system" }
58-
tremor-archive = { version = "0.13.0-rc.32", path = "../tremor-archive" }
49+
tremor-api = { version = "0.13.0-rc.33", path = "../tremor-api" }
50+
tremor-codec = { version = "0.13.0-rc.33", path = "../tremor-codec" }
51+
tremor-interceptor = { version = "0.13.0-rc.33", path = "../tremor-interceptor" }
52+
tremor-common = { version = "0.13.0-rc.33", path = "../tremor-common" }
53+
tremor-pipeline = { version = "0.13.0-rc.33", path = "../tremor-pipeline" }
54+
tremor-runtime = { version = "0.13.0-rc.33", path = "../" }
55+
tremor-script = { version = "0.13.0-rc.33", path = "../tremor-script" }
56+
tremor-value = { version = "0.13.0-rc.33", path = "../tremor-value" }
57+
tremor-system = { version = "0.13.0-rc.33", path = "../tremor-system" }
58+
tremor-archive = { version = "0.13.0-rc.33", path = "../tremor-archive" }
5959
url = "2"
6060
error-chain = "0.12"
6161
globwalk = "0.9"

tremor-codec/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ documentation = "https://docs.rs/tremor-script"
77
license = "Apache-2.0"
88
readme = "README.md"
99
repository = "https://github.com/tremor-rs/tremor-runtime"
10-
version = "0.13.0-rc.32"
10+
version = "0.13.0-rc.33"
1111

1212

1313
[dependencies]
14-
tremor-value = { version = "0.13.0-rc.32", path = "../tremor-value" }
15-
tremor-common = { version = "0.13.0-rc.32", path = "../tremor-common" }
16-
tremor-config = { version = "0.13.0-rc.32", path = "../tremor-config" }
14+
tremor-value = { version = "0.13.0-rc.33", path = "../tremor-value" }
15+
tremor-common = { version = "0.13.0-rc.33", path = "../tremor-common" }
16+
tremor-config = { version = "0.13.0-rc.33", path = "../tremor-config" }
1717
tokio = { version = "1.39", features = ["full"] }
1818
async-trait = "0.1"
1919
error-chain = "0.12"
@@ -43,7 +43,7 @@ reqwest = { version = "0.12", default-features = false, features = [
4343
"rustls-tls-native-roots",
4444
] }
4545
csv = "1.2"
46-
tremor-influx = { version = "0.13.0-rc.32", path = "../tremor-influx" }
46+
tremor-influx = { version = "0.13.0-rc.33", path = "../tremor-influx" }
4747
simd-json = "0.13"
4848
apache-avro = { version = "0.17", features = [
4949
"snappy",

tremor-common/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2021"
66
license = "Apache-2.0"
77
name = "tremor-common"
88
readme = "README.md"
9-
version = "0.13.0-rc.32"
9+
version = "0.13.0-rc.33"
1010

1111
[dependencies]
1212
tokio = { version = "1", default-features = false, features = ["fs"] }

tremor-config/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ documentation = "https://docs.rs/tremor-script"
77
license = "Apache-2.0"
88
readme = "README.md"
99
repository = "https://github.com/tremor-rs/tremor-runtime"
10-
version = "0.13.0-rc.32"
10+
version = "0.13.0-rc.33"
1111

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

1414
[dependencies]
15-
tremor-value = { path = "../tremor-value", version = "0.13.0-rc.32" }
15+
tremor-value = { path = "../tremor-value", version = "0.13.0-rc.33" }
1616
serde = "1"

tremor-connectors-aws/Cargo.toml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tremor-connectors-aws"
3-
version = "0.13.0-rc.32"
3+
version = "0.13.0-rc.33"
44
edition = "2021"
55
license = "Apache-2.0"
66
homepage = "https://www.tremor.rs"
@@ -9,12 +9,12 @@ authors = ["The Tremor Team"]
99
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
1010

1111
[dependencies]
12-
tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.32", default-features = false }
13-
tremor-connectors-object-storage = { path = "../tremor-connectors-object-storage", version = "0.13.0-rc.32" }
14-
tremor-common = { path = "../tremor-common", version = "0.13.0-rc.32" }
15-
tremor-system = { path = "../tremor-system", version = "0.13.0-rc.32" }
16-
tremor-value = { path = "../tremor-value", version = "0.13.0-rc.32" }
17-
tremor-config = { path = "../tremor-config", version = "0.13.0-rc.32" }
12+
tremor-connectors = { path = "../tremor-connectors", version = "0.13.0-rc.33", default-features = false }
13+
tremor-connectors-object-storage = { path = "../tremor-connectors-object-storage", version = "0.13.0-rc.33" }
14+
tremor-common = { path = "../tremor-common", version = "0.13.0-rc.33" }
15+
tremor-system = { path = "../tremor-system", version = "0.13.0-rc.33" }
16+
tremor-value = { path = "../tremor-value", version = "0.13.0-rc.33" }
17+
tremor-config = { path = "../tremor-config", version = "0.13.0-rc.33" }
1818

1919
async-trait = { version = "0.1", default-features = false }
2020
serde = { version = "1.0", default-features = false, features = ["derive"] }
@@ -41,7 +41,7 @@ rand = { version = "0.8", default-features = false }
4141
testcontainers = { version = "0.23", default-features = false }
4242
serial_test = { version = "3.0", default-features = false }
4343
bytes = { version = "1.6", default-features = true }
44-
tremor-connectors-test-helpers = { path = "../tremor-connectors-test-helpers", version = "0.13.0-rc.32" }
44+
tremor-connectors-test-helpers = { path = "../tremor-connectors-test-helpers", version = "0.13.0-rc.33" }
4545
testcontainers-modules = { version = "0.11.1", features = ["localstack"] }
4646

4747
[features]

0 commit comments

Comments
 (0)