Skip to content

Commit 127d2dd

Browse files
committed
[ci] Add feldera-ir to released crates.
Signed-off-by: Gerd Zellweger <mail@gerdzellweger.com>
1 parent ec6f126 commit 127d2dd

File tree

15 files changed

+28
-26
lines changed

15 files changed

+28
-26
lines changed

.github/workflows/ci-post-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ jobs:
4141
run: |
4242
cargo set-version --bump ${{ vars.RELEASE_NEXT_VERSION }} -p feldera-types
4343
cargo set-version --bump ${{ vars.RELEASE_NEXT_VERSION }} -p feldera-storage
44+
cargo set-version --bump ${{ vars.RELEASE_NEXT_VERSION }} -p feldera-ir
4445
cargo set-version --bump ${{ vars.RELEASE_NEXT_VERSION }} -p dbsp
4546
cargo set-version --bump ${{ vars.RELEASE_NEXT_VERSION }} -p feldera-rest-api
4647
cargo set-version --bump ${{ vars.RELEASE_NEXT_VERSION }} -p fda
@@ -63,4 +64,4 @@ jobs:
6364
message: "ci: Prepare for v${{ env.NEXT_VERSION }}"
6465
author_name: feldera-ci
6566
author_email: feldera-ci-noreply@feldera.io
66-
push: origin main
67+
push: origin main

.github/workflows/publish-crates.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ jobs:
2929
cargo publish ${{ vars.CARGO_PUBLISH_FLAGS }} --package feldera-types
3030
cargo publish ${{ vars.CARGO_PUBLISH_FLAGS }} --package feldera-storage
3131
cargo publish ${{ vars.CARGO_PUBLISH_FLAGS }} --package feldera-rest-api
32+
cargo publish ${{ vars.CARGO_PUBLISH_FLAGS }} --package feldera-ir
3233
cargo publish ${{ vars.CARGO_PUBLISH_FLAGS }} --package dbsp
3334
cargo publish ${{ vars.CARGO_PUBLISH_FLAGS }} --package fda
3435
cargo publish ${{ vars.CARGO_PUBLISH_FLAGS }} --package feldera-sqllib
3536
env:
36-
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
37+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

Cargo.lock

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

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ crossbeam-utils = "0.8.6"
7171
csv = "1.2.2"
7272
csv-core = "0.1.10"
7373
datafusion = "45"
74-
dbsp = { path = "crates/dbsp", version = "0.47.0" }
74+
dbsp = { path = "crates/dbsp", version = "0.48.0" }
7575
dbsp_nexmark = { path = "crates/nexmark" }
7676
deadpool-postgres = "0.10.5"
7777
deltalake = { git = "https://github.com/delta-io/delta-rs.git", rev = "666179e" }
@@ -88,10 +88,10 @@ feldera-adapterlib = { path = "crates/adapterlib" }
8888
feldera-datagen = { path = "crates/datagen" }
8989
feldera-iceberg = { path = "crates/iceberg" }
9090
feldera-sqllib = { path = "crates/sqllib" }
91-
feldera-storage = { version = "0.47.0", path = "crates/storage" }
92-
feldera-types = { version = "0.47.0", path = "crates/feldera-types" }
93-
feldera-rest-api = { version = "0.47.0", path = "crates/rest-api" }
94-
feldera-ir = { version = "0.47.0", path = "crates/ir" }
91+
feldera-storage = { version = "0.48.0", path = "crates/storage" }
92+
feldera-types = { version = "0.48.0", path = "crates/feldera-types" }
93+
feldera-rest-api = { version = "0.48.0", path = "crates/rest-api" }
94+
feldera-ir = { version = "0.48.0", path = "crates/ir" }
9595
flate2 = "1.1.0"
9696
form_urlencoded = "1.2.0"
9797
futures = "0.3.30"

crates/dbsp/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "dbsp"
3-
version = "0.47.0"
3+
version = "0.48.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Continuous streaming analytics engine"

crates/fda/Cargo.toml

Lines changed: 1 addition & 1 deletion
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.47.0"
7+
version = "0.48.0"
88
edition = "2021"
99
include = ["openapi.json", "/src", "build.rs", "COPYRIGHT", "README.md"]
1010

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.47.0"
3+
version = "0.48.0"
44
edition = "2021"
55
license = "MIT"
66
description = "Public API types for Feldera"

crates/ir/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-ir"
3-
version = "0.47.0"
3+
version = "0.48.0"
44
edition = "2021"
55
license = "MIT"
66
description = "Intermediate representation types for Feldera Programs"

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.47.0"
3+
version = "0.48.0"
44
edition = "2021"
55
license = "MIT OR Apache-2.0"
66
description = "Data pipeline manager for the Feldera continuous analytics platform."

crates/rest-api/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-rest-api"
3-
version = "0.47.0"
3+
version = "0.48.0"
44
edition = "2021"
55
license = "MIT"
66
description = "REST API bindings for Feldera"

0 commit comments

Comments
 (0)