Skip to content

Commit 869fbe4

Browse files
web-flowdarach
authored andcommitted
Prepare release 0.13.0-rc.30
Signed-off-by: GitHub actions <noreply@github.com>
1 parent 8f93107 commit 869fbe4

File tree

23 files changed

+136
-136
lines changed

23 files changed

+136
-136
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Changelog
22

3-
## Unreleased
3+
## [0.13.0-rc.30]
44

55
### New features
66
* update apache-avro to version 0.17 adding support for nano resolution timestamp logical types in schemas

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.29"
12+
version = "0.13.0-rc.30"
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.29" }
49-
tremor-common = { path = "tremor-common", version = "0.13.0-rc.29" }
50-
tremor-config = { path = "tremor-config", version = "0.13.0-rc.29" }
51-
tremor-connectors = { path = "tremor-connectors", version = "0.13.0-rc.29", default-features = false }
52-
tremor-connectors-aws = { path = "tremor-connectors-aws", version = "0.13.0-rc.29", optional = true }
53-
tremor-connectors-azure = { path = "tremor-connectors-azure", version = "0.13.0-rc.29", optional = true }
54-
tremor-connectors-gcp = { path = "tremor-connectors-gcp", version = "0.13.0-rc.29", optional = true }
55-
tremor-connectors-otel = { path = "tremor-connectors-otel", version = "0.13.0-rc.29", optional = true }
56-
tremor-influx = { path = "tremor-influx", version = "0.13.0-rc.29" }
57-
tremor-interceptor = { path = "tremor-interceptor", version = "0.13.0-rc.29" }
58-
tremor-pipeline = { path = "tremor-pipeline", version = "0.13.0-rc.29" }
59-
tremor-script = { path = "tremor-script", version = "0.13.0-rc.29" }
60-
tremor-system = { path = "tremor-system", version = "0.13.0-rc.29" }
61-
tremor-value = { path = "tremor-value", version = "0.13.0-rc.29" }
62-
tremor-archive = { path = "tremor-archive", version = "0.13.0-rc.29" }
48+
tremor-codec = { path = "tremor-codec", version = "0.13.0-rc.30" }
49+
tremor-common = { path = "tremor-common", version = "0.13.0-rc.30" }
50+
tremor-config = { path = "tremor-config", version = "0.13.0-rc.30" }
51+
tremor-connectors = { path = "tremor-connectors", version = "0.13.0-rc.30", default-features = false }
52+
tremor-connectors-aws = { path = "tremor-connectors-aws", version = "0.13.0-rc.30", optional = true }
53+
tremor-connectors-azure = { path = "tremor-connectors-azure", version = "0.13.0-rc.30", optional = true }
54+
tremor-connectors-gcp = { path = "tremor-connectors-gcp", version = "0.13.0-rc.30", optional = true }
55+
tremor-connectors-otel = { path = "tremor-connectors-otel", version = "0.13.0-rc.30", optional = true }
56+
tremor-influx = { path = "tremor-influx", version = "0.13.0-rc.30" }
57+
tremor-interceptor = { path = "tremor-interceptor", version = "0.13.0-rc.30" }
58+
tremor-pipeline = { path = "tremor-pipeline", version = "0.13.0-rc.30" }
59+
tremor-script = { path = "tremor-script", version = "0.13.0-rc.30" }
60+
tremor-system = { path = "tremor-system", version = "0.13.0-rc.30" }
61+
tremor-value = { path = "tremor-value", version = "0.13.0-rc.30" }
62+
tremor-archive = { path = "tremor-archive", version = "0.13.0-rc.30" }
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.29
5+
FROM tremorproject/tremor:0.13.0-rc.30
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.29"
7+
version = "0.13.0-rc.30"
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.29", path = "../tremor-pipeline" }
21-
tremor-runtime = { version = "0.13.0-rc.29", path = "../" }
22-
tremor-script = { version = "0.13.0-rc.29", path = "../tremor-script" }
23-
tremor-value = { version = "0.13.0-rc.29", path = "../tremor-value" }
24-
tremor-common = { version = "0.13.0-rc.29", path = "../tremor-common" }
25-
tremor-system = { version = "0.13.0-rc.29", path = "../tremor-system" }
20+
tremor-pipeline = { version = "0.13.0-rc.30", path = "../tremor-pipeline" }
21+
tremor-runtime = { version = "0.13.0-rc.30", path = "../" }
22+
tremor-script = { version = "0.13.0-rc.30", path = "../tremor-script" }
23+
tremor-value = { version = "0.13.0-rc.30", path = "../tremor-value" }
24+
tremor-common = { version = "0.13.0-rc.30", path = "../tremor-common" }
25+
tremor-system = { version = "0.13.0-rc.30", 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.29"
11+
version = "0.13.0-rc.30"
1212

1313
[dependencies]
14-
tremor-common = { path = "../tremor-common", version = "0.13.0-rc.29" }
15-
tremor-script = { path = "../tremor-script", version = "0.13.0-rc.29" }
14+
tremor-common = { path = "../tremor-common", version = "0.13.0-rc.30" }
15+
tremor-script = { path = "../tremor-script", version = "0.13.0-rc.30" }
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.29"
7+
version = "0.13.0-rc.30"
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.29", path = "../tremor-api" }
50-
tremor-codec = { version = "0.13.0-rc.29", path = "../tremor-codec" }
51-
tremor-interceptor = { version = "0.13.0-rc.29", path = "../tremor-interceptor" }
52-
tremor-common = { version = "0.13.0-rc.29", path = "../tremor-common" }
53-
tremor-pipeline = { version = "0.13.0-rc.29", path = "../tremor-pipeline" }
54-
tremor-runtime = { version = "0.13.0-rc.29", path = "../" }
55-
tremor-script = { version = "0.13.0-rc.29", path = "../tremor-script" }
56-
tremor-value = { version = "0.13.0-rc.29", path = "../tremor-value" }
57-
tremor-system = { version = "0.13.0-rc.29", path = "../tremor-system" }
58-
tremor-archive = { version = "0.13.0-rc.29", path = "../tremor-archive" }
49+
tremor-api = { version = "0.13.0-rc.30", path = "../tremor-api" }
50+
tremor-codec = { version = "0.13.0-rc.30", path = "../tremor-codec" }
51+
tremor-interceptor = { version = "0.13.0-rc.30", path = "../tremor-interceptor" }
52+
tremor-common = { version = "0.13.0-rc.30", path = "../tremor-common" }
53+
tremor-pipeline = { version = "0.13.0-rc.30", path = "../tremor-pipeline" }
54+
tremor-runtime = { version = "0.13.0-rc.30", path = "../" }
55+
tremor-script = { version = "0.13.0-rc.30", path = "../tremor-script" }
56+
tremor-value = { version = "0.13.0-rc.30", path = "../tremor-value" }
57+
tremor-system = { version = "0.13.0-rc.30", path = "../tremor-system" }
58+
tremor-archive = { version = "0.13.0-rc.30", 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.29"
10+
version = "0.13.0-rc.30"
1111

1212

1313
[dependencies]
14-
tremor-value = { version = "0.13.0-rc.29", path = "../tremor-value" }
15-
tremor-common = { version = "0.13.0-rc.29", path = "../tremor-common" }
16-
tremor-config = { version = "0.13.0-rc.29", path = "../tremor-config" }
14+
tremor-value = { version = "0.13.0-rc.30", path = "../tremor-value" }
15+
tremor-common = { version = "0.13.0-rc.30", path = "../tremor-common" }
16+
tremor-config = { version = "0.13.0-rc.30", 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.29", path = "../tremor-influx" }
46+
tremor-influx = { version = "0.13.0-rc.30", 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.29"
9+
version = "0.13.0-rc.30"
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.29"
10+
version = "0.13.0-rc.30"
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.29" }
15+
tremor-value = { path = "../tremor-value", version = "0.13.0-rc.30" }
1616
serde = "1"

0 commit comments

Comments
 (0)