Skip to content

Commit

Permalink
fix: publish & bump versions (#28)
Browse files Browse the repository at this point in the history
* bump version

* update release pipeline

* bump version
  • Loading branch information
sjrusso8 committed May 10, 2024
1 parent 7f110d1 commit 3adabe6
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,18 @@ jobs:
with:
version: 23.x

- name: cargo publish
- name: cargo publish core
uses: actions-rs/cargo@v1
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
with:
command: publish
args: --token "${CARGO_REGISTRY_TOKEN}" --manifest-path ./Cargo.toml
args: --token "${CARGO_REGISTRY_TOKEN}" --package spark-connect-core --manifest-path ./Cargo.toml

- name: cargo publish rust
uses: actions-rs/cargo@v1
env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
with:
command: publish
args: --token "${CARGO_REGISTRY_TOKEN}" --package spark-connect-rs --manifest-path ./Cargo.toml
2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spark-connect-core"
version = "0.0.0"
version = "0.0.1-beta.4"
authors.workspace = true
keywords.workspace = true
readme.workspace = true
Expand Down
4 changes: 2 additions & 2 deletions rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "spark-connect-rs"
version = "0.0.1-beta.3"
version = "0.0.1-beta.4"
authors.workspace = true
keywords.workspace = true
readme.workspace = true
Expand All @@ -18,7 +18,7 @@ include = [
[dependencies]
tokio = { workspace = true }

spark-connect-core = { version = "0.0.0", path = "../core" }
spark-connect-core = { version = "0.0.1-beta.4", path = "../core" }

[features]
tls = ["spark-connect-core/tls"]
Expand Down

0 comments on commit 3adabe6

Please sign in to comment.