Skip to content

Commit

Permalink
Prepare release 0.12.0-rc.5
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 May 10, 2022
1 parent 86d65f1 commit d176b94
Show file tree
Hide file tree
Showing 10 changed files with 28 additions and 28 deletions.
16 changes: 8 additions & 8 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.12.0-rc.4"
version = "0.12.0-rc.5"

[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.60-bullseye as builder

RUN cargo install --features=ssl websocat

FROM tremorproject/tremor:0.12.0-rc.4
FROM tremorproject/tremor:0.12.0-rc.5

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.12.0-rc.4"
version = "0.12.0-rc.5"

[dependencies]
async-std = { version = "1.10.0", features = [
Expand All @@ -22,11 +22,11 @@ serde_yaml = "0.8"
simd-json = "0.4"
# 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.12.0-rc.4", path = "../tremor-pipeline" }
tremor-runtime = { version = "0.12.0-rc.4", path = "../" }
tremor-script = { version = "0.12.0-rc.4", path = "../tremor-script" }
tremor-value = { version = "0.12.0-rc.4", path = "../tremor-value" }
tremor-common = { version = "0.12.0-rc.4", path = "../tremor-common" }
tremor-pipeline = { version = "0.12.0-rc.5", path = "../tremor-pipeline" }
tremor-runtime = { version = "0.12.0-rc.5", path = "../" }
tremor-script = { version = "0.12.0-rc.5", path = "../tremor-script" }
tremor-value = { version = "0.12.0-rc.5", path = "../tremor-value" }
tremor-common = { version = "0.12.0-rc.5", path = "../tremor-common" }
# value-trait = "0.2"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion 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.12.0-rc.4"
version = "0.12.0-rc.5"

[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
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.12.0-rc.4"
version = "0.12.0-rc.5"

[dependencies]
async-std = "1"
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.12.0-rc.4"
version = "0.12.0-rc.5"

[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.12.0-rc.4"
version = "0.12.0-rc.5"

[dependencies]
async-broadcast = "0.4"
Expand All @@ -26,9 +26,9 @@ serde_yaml = "0.8"
simd-json = { version = "0.4", features = ["known-key"] }
simd-json-derive = "0.2"
sled = "0.34"
tremor-common = { version = "0.12.0-rc.4", path = "../tremor-common" }
tremor-script = { version = "0.12.0-rc.4", path = "../tremor-script" }
tremor-value = { version = "0.12.0-rc.4", path = "../tremor-value" }
tremor-common = { version = "0.12.0-rc.5", path = "../tremor-common" }
tremor-script = { version = "0.12.0-rc.5", path = "../tremor-script" }
tremor-value = { version = "0.12.0-rc.5", path = "../tremor-value" }
url = "2.2.2"
value-trait = "0.2"
window = { git = "https://github.com/tremor-rs/window.git", tag = "v0.1.1" }
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.12.0-rc.4"
version = "0.12.0-rc.5"

[package.metadata.docs.rs]
default-target = "x86_64-unknown-linux-gnu"
Expand Down Expand Up @@ -53,10 +53,10 @@ simd-json-derive = "0.2"
sketches-ddsketch = "0.1.2"
strip-ansi-escapes = "0.1"
termcolor = "1.1"
tremor-common = { version = "0.12.0-rc.4", path = "../tremor-common" }
tremor-influx = { version = "0.12.0-rc.4", path = "../tremor-influx" }
tremor-common = { version = "0.12.0-rc.5", path = "../tremor-common" }
tremor-influx = { version = "0.12.0-rc.5", path = "../tremor-influx" }
tremor-kv = "0.2"
tremor-value = { version = "0.12.0-rc.4", path = "../tremor-value" }
tremor-value = { version = "0.12.0-rc.5", path = "../tremor-value" }
unicode-xid = "0.2"
url = "2"
value-trait = "0.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.12.0-rc.4"
version = "0.12.0-rc.5"

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

Expand Down

0 comments on commit d176b94

Please sign in to comment.