Skip to content

Commit

Permalink
Prepare release 0.13.0-rc.10
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 mfelsche committed Dec 2, 2022
1 parent 337ad9b commit 67a00d9
Show file tree
Hide file tree
Showing 12 changed files with 37 additions and 37 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.10]

### New Features

Expand Down
18 changes: 9 additions & 9 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.9"
version = "0.13.0-rc.10"
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.65-bullseye as builder

RUN cargo install --features=ssl websocat

FROM tremorproject/tremor:0.13.0-rc.9
FROM tremorproject/tremor:0.13.0-rc.10

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

Expand Down
12 changes: 6 additions & 6 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.9"
version = "0.13.0-rc.10"

[dependencies]
async-std = { version = "1.12.0", features = [
Expand All @@ -21,11 +21,11 @@ serde_yaml = "0.9"
simd-json = "0.7"
# 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.9", path = "../tremor-pipeline" }
tremor-runtime = { version = "0.13.0-rc.9", path = "../" }
tremor-script = { version = "0.13.0-rc.9", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.9", path = "../tremor-value" }
tremor-common = { version = "0.13.0-rc.9", path = "../tremor-common" }
tremor-pipeline = { version = "0.13.0-rc.10", path = "../tremor-pipeline" }
tremor-runtime = { version = "0.13.0-rc.10", path = "../" }
tremor-script = { version = "0.13.0-rc.10", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.10", path = "../tremor-value" }
tremor-common = { version = "0.13.0-rc.10", path = "../tremor-common" }

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

[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
Expand Down Expand Up @@ -47,12 +47,12 @@ surf = { version = "=2.3.2", default-features = false, features = [
"h1-client-rustls",
"middleware-logger",
] }
tremor-api = { version = "0.13.0-rc.9", path = "../tremor-api" }
tremor-common = { version = "0.13.0-rc.9", path = "../tremor-common" }
tremor-pipeline = { version = "0.13.0-rc.9", path = "../tremor-pipeline" }
tremor-runtime = { version = "0.13.0-rc.9", path = "../" }
tremor-script = { version = "0.13.0-rc.9", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.9", path = "../tremor-value" }
tremor-api = { version = "0.13.0-rc.10", path = "../tremor-api" }
tremor-common = { version = "0.13.0-rc.10", path = "../tremor-common" }
tremor-pipeline = { version = "0.13.0-rc.10", path = "../tremor-pipeline" }
tremor-runtime = { version = "0.13.0-rc.10", path = "../" }
tremor-script = { version = "0.13.0-rc.10", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.10", path = "../tremor-value" }
url = "2"
# mimalloc-rs = { version = "0.1", default-features = true, optional = true }
# allocator_api = "0.6.0"
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.9"
version = "0.13.0-rc.10"

[dependencies]
async-std = { version = "1", features = ["attributes"] }
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.9"
version = "0.13.0-rc.10"

[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
Expand Down
8 changes: 4 additions & 4 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.9"
version = "0.13.0-rc.10"

[dependencies]
async-broadcast = "0.4"
Expand All @@ -27,9 +27,9 @@ serde_yaml = "0.9"
simd-json = { version = "0.7", features = ["known-key"] }
simd-json-derive = "0.7"
sled = "0.34"
tremor-common = { version = "0.13.0-rc.9", path = "../tremor-common" }
tremor-script = { version = "0.13.0-rc.9", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.9", path = "../tremor-value" }
tremor-common = { version = "0.13.0-rc.10", path = "../tremor-common" }
tremor-script = { version = "0.13.0-rc.10", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.10", path = "../tremor-value" }
url = "2.3.1"
value-trait = "0.5"
window = { git = "https://github.com/tremor-rs/window.git", tag = "v0.1.1" }
Expand Down
2 changes: 1 addition & 1 deletion tremor-script-nif/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.9"
version = "0.13.0-rc.10"
rust-version = "1.62"

[lib]
Expand Down
8 changes: 4 additions & 4 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.9"
version = "0.13.0-rc.10"

[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
Expand Down Expand Up @@ -54,9 +54,9 @@ simd-json-derive = "0.7"
sketches-ddsketch = "0.2.0"
strip-ansi-escapes = "0.1"
termcolor = "1.1"
tremor-common = { version = "0.13.0-rc.9", path = "../tremor-common" }
tremor-influx = { version = "0.13.0-rc.9", path = "../tremor-influx" }
tremor-value = { version = "0.13.0-rc.9", path = "../tremor-value" }
tremor-common = { version = "0.13.0-rc.10", path = "../tremor-common" }
tremor-influx = { version = "0.13.0-rc.10", path = "../tremor-influx" }
tremor-value = { version = "0.13.0-rc.10", path = "../tremor-value" }
tremor-kv = "0.5"
unicode-xid = "0.2"
url = "2"
Expand Down
2 changes: 1 addition & 1 deletion 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.9"
version = "0.13.0-rc.10"

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

Expand Down

0 comments on commit 67a00d9

Please sign in to comment.