Skip to content

Commit

Permalink
Prepare release 0.13.0-rc.29
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 Jun 24, 2024
1 parent 5763295 commit 61a40b3
Show file tree
Hide file tree
Showing 23 changed files with 136 additions and 136 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.29]

### New features
* add experimental microsoft azure monitor log ingest api connector
Expand Down
40 changes: 20 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

32 changes: 16 additions & 16 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.28"
version = "0.13.0-rc.29"
rust-version = "1.62"

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

[dependencies]
tremor-codec = { path = "tremor-codec", version = "0.13.0-rc.28" }
tremor-common = { path = "tremor-common", version = "0.13.0-rc.28" }
tremor-config = { path = "tremor-config", version = "0.13.0-rc.28" }
tremor-connectors = { path = "tremor-connectors", version = "0.13.0-rc.28", default-features = false }
tremor-connectors-aws = { path = "tremor-connectors-aws", version = "0.13.0-rc.28", optional = true }
tremor-connectors-azure = { path = "tremor-connectors-azure", version = "0.13.0-rc.28", optional = true }
tremor-connectors-gcp = { path = "tremor-connectors-gcp", version = "0.13.0-rc.28", optional = true }
tremor-connectors-otel = { path = "tremor-connectors-otel", version = "0.13.0-rc.28", optional = true }
tremor-influx = { path = "tremor-influx", version = "0.13.0-rc.28" }
tremor-interceptor = { path = "tremor-interceptor", version = "0.13.0-rc.28" }
tremor-pipeline = { path = "tremor-pipeline", version = "0.13.0-rc.28" }
tremor-script = { path = "tremor-script", version = "0.13.0-rc.28" }
tremor-system = { path = "tremor-system", version = "0.13.0-rc.28" }
tremor-value = { path = "tremor-value", version = "0.13.0-rc.28" }
tremor-archive = { path = "tremor-archive", version = "0.13.0-rc.28" }
tremor-codec = { path = "tremor-codec", version = "0.13.0-rc.29" }
tremor-common = { path = "tremor-common", version = "0.13.0-rc.29" }
tremor-config = { path = "tremor-config", version = "0.13.0-rc.29" }
tremor-connectors = { path = "tremor-connectors", version = "0.13.0-rc.29", default-features = false }
tremor-connectors-aws = { path = "tremor-connectors-aws", version = "0.13.0-rc.29", optional = true }
tremor-connectors-azure = { path = "tremor-connectors-azure", version = "0.13.0-rc.29", optional = true }
tremor-connectors-gcp = { path = "tremor-connectors-gcp", version = "0.13.0-rc.29", optional = true }
tremor-connectors-otel = { path = "tremor-connectors-otel", version = "0.13.0-rc.29", optional = true }
tremor-influx = { path = "tremor-influx", version = "0.13.0-rc.29" }
tremor-interceptor = { path = "tremor-interceptor", version = "0.13.0-rc.29" }
tremor-pipeline = { path = "tremor-pipeline", version = "0.13.0-rc.29" }
tremor-script = { path = "tremor-script", version = "0.13.0-rc.29" }
tremor-system = { path = "tremor-system", version = "0.13.0-rc.29" }
tremor-value = { path = "tremor-value", version = "0.13.0-rc.29" }
tremor-archive = { path = "tremor-archive", version = "0.13.0-rc.29" }

tokio = { version = "1.38", 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.78-bullseye as builder

RUN cargo install --features=ssl websocat

FROM tremorproject/tremor:0.13.0-rc.28
FROM tremorproject/tremor:0.13.0-rc.29

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.28"
version = "0.13.0-rc.29"
homepage = "https://www.tremor.rs"

[dependencies]
Expand All @@ -17,12 +17,12 @@ simd-json = "0.13"
tokio = { version = "1.38", 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.28", path = "../tremor-pipeline" }
tremor-runtime = { version = "0.13.0-rc.28", path = "../" }
tremor-script = { version = "0.13.0-rc.28", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.28", path = "../tremor-value" }
tremor-common = { version = "0.13.0-rc.28", path = "../tremor-common" }
tremor-system = { version = "0.13.0-rc.28", path = "../tremor-system" }
tremor-pipeline = { version = "0.13.0-rc.29", path = "../tremor-pipeline" }
tremor-runtime = { version = "0.13.0-rc.29", path = "../" }
tremor-script = { version = "0.13.0-rc.29", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.29", path = "../tremor-value" }
tremor-common = { version = "0.13.0-rc.29", path = "../tremor-common" }
tremor-system = { version = "0.13.0-rc.29", path = "../tremor-system" }

[dev-dependencies]
surf = { version = "2.3", default-features = false, features = [
Expand Down
6 changes: 3 additions & 3 deletions tremor-archive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@ 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.28"
version = "0.13.0-rc.29"

[dependencies]
tremor-common = { path = "../tremor-common", version = "0.13.0-rc.28" }
tremor-script = { path = "../tremor-script", version = "0.13.0-rc.28" }
tremor-common = { path = "../tremor-common", version = "0.13.0-rc.29" }
tremor-script = { path = "../tremor-script", version = "0.13.0-rc.29" }

tokio = { version = "1", default-features = false, features = [] }
tokio-tar = "0.3"
Expand Down
22 changes: 11 additions & 11 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.28"
version = "0.13.0-rc.29"
homepage = "https://www.tremor.rs"

[package.metadata.docs.rs]
Expand Down Expand Up @@ -46,16 +46,16 @@ surf = { version = "=2.3.2", default-features = false, features = [
"h1-client-rustls",
"middleware-logger",
] }
tremor-api = { version = "0.13.0-rc.28", path = "../tremor-api" }
tremor-codec = { version = "0.13.0-rc.28", path = "../tremor-codec" }
tremor-interceptor = { version = "0.13.0-rc.28", path = "../tremor-interceptor" }
tremor-common = { version = "0.13.0-rc.28", path = "../tremor-common" }
tremor-pipeline = { version = "0.13.0-rc.28", path = "../tremor-pipeline" }
tremor-runtime = { version = "0.13.0-rc.28", path = "../" }
tremor-script = { version = "0.13.0-rc.28", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.28", path = "../tremor-value" }
tremor-system = { version = "0.13.0-rc.28", path = "../tremor-system" }
tremor-archive = { version = "0.13.0-rc.28", path = "../tremor-archive" }
tremor-api = { version = "0.13.0-rc.29", path = "../tremor-api" }
tremor-codec = { version = "0.13.0-rc.29", path = "../tremor-codec" }
tremor-interceptor = { version = "0.13.0-rc.29", path = "../tremor-interceptor" }
tremor-common = { version = "0.13.0-rc.29", path = "../tremor-common" }
tremor-pipeline = { version = "0.13.0-rc.29", path = "../tremor-pipeline" }
tremor-runtime = { version = "0.13.0-rc.29", path = "../" }
tremor-script = { version = "0.13.0-rc.29", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.29", path = "../tremor-value" }
tremor-system = { version = "0.13.0-rc.29", path = "../tremor-system" }
tremor-archive = { version = "0.13.0-rc.29", path = "../tremor-archive" }
url = "2"
error-chain = "0.12"
globwalk = "0.9"
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.28"
version = "0.13.0-rc.29"


[dependencies]
tremor-value = { version = "0.13.0-rc.28", path = "../tremor-value" }
tremor-common = { version = "0.13.0-rc.28", path = "../tremor-common" }
tremor-config = { version = "0.13.0-rc.28", path = "../tremor-config" }
tremor-value = { version = "0.13.0-rc.29", path = "../tremor-value" }
tremor-common = { version = "0.13.0-rc.29", path = "../tremor-common" }
tremor-config = { version = "0.13.0-rc.29", path = "../tremor-config" }
tokio = { version = "1.38", features = ["full"] }
async-trait = "0.1"
error-chain = "0.12"
Expand Down Expand Up @@ -43,7 +43,7 @@ reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls-native-roots",
] }
csv = "1.2"
tremor-influx = { version = "0.13.0-rc.28", path = "../tremor-influx" }
tremor-influx = { version = "0.13.0-rc.29", 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.28"
version = "0.13.0-rc.29"

[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,10 +7,10 @@ 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.28"
version = "0.13.0-rc.29"

# 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.28" }
tremor-value = { path = "../tremor-value", version = "0.13.0-rc.29" }
serde = "1"
Loading

0 comments on commit 61a40b3

Please sign in to comment.