Skip to content

Commit 0c230ca

Browse files
committed
release: bump project version to 0.39.0
Signed-off-by: Gerd Zellweger <mail@gerdzellweger.com>
1 parent 7848de6 commit 0c230ca

File tree

10 files changed

+18
-23
lines changed

10 files changed

+18
-23
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/dbsp/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dbsp"
3-
version = "0.38.0"
3+
version = "0.39.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Continuous streaming analytics engine"
@@ -67,7 +67,7 @@ metrics = { version = "0.23.0" }
6767
rlimit = "0.10.1"
6868
serde = { version = "1.0", features = ["derive"] }
6969
ptr_meta = "0.2.0"
70-
feldera-types = { path = "../feldera-types", version = "0.38.0" }
70+
feldera-types = { path = "../feldera-types", version = "0.39.0" }
7171
libc = "0.2.153"
7272
static_assertions = "1.1.0"
7373
zip = "0.6.2"

crates/fda/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ description = "A CLI tool for interacting with Feldera"
44
homepage = "https://github.com/feldera/feldera"
55
repository = "https://github.com/feldera/feldera"
66
license = "MIT OR Apache-2.0"
7-
version = "0.38.0"
7+
version = "0.39.0"
88
edition = "2021"
99
include = ["openapi.json", "/src", "build.rs", "COPYRIGHT", "README.md"]
1010

@@ -20,7 +20,7 @@ serde_json = { version = "1.0" }
2020
chrono = { version = "0.4", features = ["serde"] }
2121
uuid = { version = "1.11.0", features = ["serde", "v7"] }
2222
tokio = { version = "1.0.0", features = ["rt-multi-thread", "macros", "io-std", "process"] }
23-
feldera-types = { path = "../feldera-types", version = "0.38.0" }
23+
feldera-types = { path = "../feldera-types", version = "0.39.0" }
2424
env_logger = "0.11"
2525
tabled = { version = "0.17", features = ["macros", "ansi"] }
2626
json_to_table = "0.9.0"

crates/feldera-types/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "feldera-types"
3-
version = "0.38.0"
3+
version = "0.39.0"
44
edition = "2021"
55
license = "MIT"
66
description = "Public API types for Feldera"

crates/pipeline-manager/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pipeline-manager"
3-
version = "0.38.0"
3+
version = "0.39.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Data pipeline manager for the Feldera continuous analytics platform."

crates/sqllib/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "feldera-sqllib"
3-
version = "0.38.0"
3+
version = "0.39.0"
44
edition = "2021"
55
license = "MIT"
66
description = "SQL runtime library for Feldera"
@@ -12,8 +12,8 @@ publish = true
1212

1313
[dependencies]
1414
thiserror = "1.0"
15-
dbsp = { path = "../dbsp", version = "0.38.0" }
16-
feldera-types = { path = "../feldera-types", version = "0.38.0" }
15+
dbsp = { path = "../dbsp", version = "0.39.0" }
16+
feldera-types = { path = "../feldera-types", version = "0.39.0" }
1717
itertools = { version = "0.13.0" }
1818
# `serde-with-arbitrary-precision` is needed because we enable `arbitrary_precision` in `serde_json`.
1919
rust_decimal = { package = "feldera_rust_decimal", version = "1.33.1-feldera.1", features = ["maths", "rkyv", "serde-float", "serde-arbitrary-precision"] }

crates/storage/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.38.0"
44
edition = "2021"
55

66
[dependencies]
7-
feldera-types = { path = "../feldera-types", version = "0.38.0" }
7+
feldera-types = { path = "../feldera-types", version = "0.39.0" }
88
tokio = { version = "1.25.0", features = ["macros", "rt", "rt-multi-thread"] }
99
libc = "0.2.153"
1010
rkyv = { version = "0.7.45", default-features = false, features = ["std", "size_64", "validation", "uuid"] }
@@ -17,4 +17,4 @@ tracing = "0.1.40"
1717
once_cell = "1.20.2"
1818

1919
[target.'cfg(target_family = "unix")'.dependencies]
20-
nix = { version = "0.27.1", features = ["uio", "feature", "fs"] }
20+
nix = { version = "0.27.1", features = ["uio", "feature", "fs"] }

openapi.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"license": {
77
"name": "MIT OR Apache-2.0"
88
},
9-
"version": "0.38.0"
9+
"version": "0.39.0"
1010
},
1111
"paths": {
1212
"/config/authentication": {

python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
66
name = "feldera"
77
readme = "README.md"
88
description = "The feldera python client"
9-
version = "0.38.0"
9+
version = "0.39.0"
1010
license = { text = "MIT" }
1111
requires-python = ">=3.10"
1212
authors = [

scripts/bump-versions.sh

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,6 @@ release() {
5959
sed -i.backup "s/\:\-${old_version}/\:\-${new_version}/g" ../deploy/docker-compose.yml
6060
sed -i.backup "s/\:\-${old_version}/\:\-${new_version}/g" ../deploy/docker-compose-extra.yml
6161

62-
# Patch the last stable pipeline manager version in the Earthlfile
63-
sed -i.backup "s/FELDERA_VERSION=${old_version}/FELDERA_VERSION=${new_version}/g" ../Earthfile
64-
sed -i.backup "s/pipeline-manager\:${old_version}/pipeline-manager\:${new_version}/g" ../Earthfile
65-
sed -i.backup "s/demo-container\:${old_version}/demo-container\:${new_version}/g" ../Earthfile
66-
6762
# Patch the latest stable pipeline manager version in the documentation and README
6863
sed -i.backup "s/pipeline-manager\:${old_version}/pipeline-manager\:${new_version}/g" ../docs/docker.md
6964
sed -i.backup "s/pipeline-manager\:${old_version}/pipeline-manager\:${new_version}/g" ../README.md

0 commit comments

Comments
 (0)