Skip to content

Commit

Permalink
fix: multiple cargo releases
Browse files Browse the repository at this point in the history
  • Loading branch information
ocni-dtu committed May 8, 2024
1 parent 6bcebbe commit 0ca74ee
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
12 changes: 12 additions & 0 deletions .releaserc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,18 @@ plugins:
- "@semantic-release/commit-analyzer"
- "@semantic-release/release-notes-generator"
- "@semantic-release/changelog"
- - "semantic-release-cargo"
- allFeatures: true
check: true
publishArgs: [ "-p", "lcax_core" ]
- - "semantic-release-cargo"
- allFeatures: true
check: true
publishArgs: [ "-p", "lcax_models" ]
- - "semantic-release-cargo"
- allFeatures: true
check: true
publishArgs: [ "-p", "lcax_convert" ]
- - "semantic-release-cargo"
- allFeatures: true
check: true
Expand Down
4 changes: 2 additions & 2 deletions modules/convert/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ serde_json = "1.0.116"
field_access = "0.1.4"
parquet = { version = "51.0.0", default-features = false, features = ["flate2", "snap"] }
uuid = { version = "1.8.0", features = ["v4", "v5"] }
lcax_core = { path = "../core" }
models = { path = "../models" }
lcax_core = { path = "../core", version = ">2.0.0" }
models = { path = "../models", version = ">2.0.0" }
chrono = "0.4.38"
bytes = "1.6.0"
6 changes: 3 additions & 3 deletions modules/lcax/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jsbindings = [
schemars = { version = "0.8.19", features = ["chrono"] }
serde = { version = "1.0.200", features = ["derive"] }
serde_json = "1.0.116"
lcax_core = { path = "../core" }
models = { path = "../models" }
convert = { path = "../convert" }
lcax_core = { path = "../core", version = ">2.0.0" }
models = { path = "../models", version = ">2.0.0" }
convert = { path = "../convert", version = ">2.0.0" }

# Python Bindings
pyo3 = { version = "0.21.2", features = ["abi3-py310"], optional = true }
Expand Down
2 changes: 1 addition & 1 deletion modules/models/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ serde = { version = "1.0.200", features = ["derive"] }
schemars = { version = "0.8.19", features = ["chrono"] }
serde_json = "1.0.116"
uuid = { version = "1.8.0", features = ["v4", "v5"] }
lcax_core = { path = "../core" }
lcax_core = { path = "../core", version = ">2.0.0" }
chrono = "0.4.38"

# Python Bindings
Expand Down

0 comments on commit 0ca74ee

Please sign in to comment.