Skip to content

Commit

Permalink
Prepare release 0.13.0-rc.8
Browse files Browse the repository at this point in the history
Signed-off-by: GitHub actions <noreply@github.com>
  • Loading branch information
web-flow authored and Licenser committed Nov 9, 2022
1 parent e2d6e6e commit a124185
Show file tree
Hide file tree
Showing 10 changed files with 34 additions and 34 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
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.7"
version = "0.13.0-rc.8"
rust-version = "1.62"

[workspace]
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.learn
Expand Up @@ -2,7 +2,7 @@ FROM rust:1.62-bullseye as builder

RUN cargo install --features=ssl websocat

FROM tremorproject/tremor:0.13.0-rc.7
FROM tremorproject/tremor:0.13.0-rc.8

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

Expand Down
12 changes: 6 additions & 6 deletions tremor-api/Cargo.toml
Expand Up @@ -4,7 +4,7 @@ description = "Tremor Api Callbacks"
edition = "2021"
license = "Apache-2.0"
name = "tremor-api"
version = "0.13.0-rc.7"
version = "0.13.0-rc.8"

[dependencies]
async-std = { version = "1.12.0", features = [
Expand All @@ -21,11 +21,11 @@ serde_yaml = "0.9"
simd-json = "0.6"
# 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.7", path = "../tremor-pipeline" }
tremor-runtime = { version = "0.13.0-rc.7", path = "../" }
tremor-script = { version = "0.13.0-rc.7", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.7", path = "../tremor-value" }
tremor-common = { version = "0.13.0-rc.7", path = "../tremor-common" }
tremor-pipeline = { version = "0.13.0-rc.8", path = "../tremor-pipeline" }
tremor-runtime = { version = "0.13.0-rc.8", path = "../" }
tremor-script = { version = "0.13.0-rc.8", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.8", path = "../tremor-value" }
tremor-common = { version = "0.13.0-rc.8", 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
Expand Up @@ -4,7 +4,7 @@ description = "Tremor CLI Tool"
edition = "2021"
license = "Apache-2.0"
name = "tremor-cli"
version = "0.13.0-rc.7"
version = "0.13.0-rc.8"

[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.7", path = "../tremor-api" }
tremor-common = { version = "0.13.0-rc.7", path = "../tremor-common" }
tremor-pipeline = { version = "0.13.0-rc.7", path = "../tremor-pipeline" }
tremor-runtime = { version = "0.13.0-rc.7", path = "../" }
tremor-script = { version = "0.13.0-rc.7", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.7", path = "../tremor-value" }
tremor-api = { version = "0.13.0-rc.8", path = "../tremor-api" }
tremor-common = { version = "0.13.0-rc.8", path = "../tremor-common" }
tremor-pipeline = { version = "0.13.0-rc.8", path = "../tremor-pipeline" }
tremor-runtime = { version = "0.13.0-rc.8", path = "../" }
tremor-script = { version = "0.13.0-rc.8", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.8", 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
Expand Up @@ -6,7 +6,7 @@ edition = "2021"
license = "Apache-2.0"
name = "tremor-common"
readme = "README.md"
version = "0.13.0-rc.7"
version = "0.13.0-rc.8"

[dependencies]
async-std = { version = "1", features = ["attributes"] }
Expand Down
2 changes: 1 addition & 1 deletion tremor-influx/Cargo.toml
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.7"
version = "0.13.0-rc.8"

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

[dependencies]
async-broadcast = "0.4"
Expand All @@ -27,9 +27,9 @@ serde_yaml = "0.9"
simd-json = { version = "0.6", features = ["known-key"] }
simd-json-derive = "0.6"
sled = "0.34"
tremor-common = { version = "0.13.0-rc.7", path = "../tremor-common" }
tremor-script = { version = "0.13.0-rc.7", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.7", path = "../tremor-value" }
tremor-common = { version = "0.13.0-rc.8", path = "../tremor-common" }
tremor-script = { version = "0.13.0-rc.8", path = "../tremor-script" }
tremor-value = { version = "0.13.0-rc.8", path = "../tremor-value" }
url = "2.3.1"
value-trait = "0.4"
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
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.7"
version = "0.13.0-rc.8"

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

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

Expand Down

0 comments on commit a124185

Please sign in to comment.