Skip to content

Commit

Permalink
Changed the rust version to be a major change rather than a minor/p…
Browse files Browse the repository at this point in the history
…atch
  • Loading branch information
Swandog committed Sep 26, 2023
1 parent 986d5e4 commit 0cbace9
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 22 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [python-0.4.0] - 2023-09-27

### Added
### Added
- Component params now available from `pylace`
- `Engine`s in `pylace` now implement deepcopy

Expand All @@ -24,7 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Updated rust `polars` to version `0.33`
- Updated rust `arrow2` to `0.18`

## [rust-0.3.2] - 2023-09-27
## [rust-0.4.0] - 2023-09-27

### Fixed

Expand Down Expand Up @@ -142,7 +142,7 @@ Initial release on [crates.io](https://crates.io/)

[unreleased]: https://github.com/promised-ai/lace/compare/python-0.4.0...HEAD
[python-0.4.0]: https://github.com/promised-ai/lace/compare/python-0.3.1...python-0.4.0
[rust-0.3.2]: https://github.com/promised-ai/lace/compare/rust-0.3.1...rust-0.3.2
[rust-0.4.0]: https://github.com/promised-ai/lace/compare/rust-0.3.1...rust-0.4.0
[python-0.3.1]: https://github.com/promised-ai/lace/compare/python-0.3.0...python-0.3.1
[rust-0.3.1]: https://github.com/promised-ai/lace/compare/rust-0.3.0...rust-0.3.1
[python-0.3.0]: https://github.com/promised-ai/lace/compare/python-0.2.0...python-0.3.0
Expand Down
8 changes: 4 additions & 4 deletions lace/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions lace/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lace"
version = "0.3.2"
version = "0.4.0"
authors = ["Promised AI"]
build = "build.rs"
edition = "2021"
Expand Down Expand Up @@ -35,14 +35,14 @@ name = "lace"
path = "bin/main.rs"

[dependencies]
lace_cc = { path = "lace_cc", version = "0.1.4" }
lace_cc = { path = "lace_cc", version = "0.2.0" }
lace_utils = { path = "lace_utils", version = "0.1.2" }
lace_stats = { path = "lace_stats", version = "0.1.3" }
lace_codebook = { path = "lace_codebook", version = "0.1.5" }
lace_codebook = { path = "lace_codebook", version = "0.2.0" }
lace_geweke = { path = "lace_geweke", version = "0.1.2" }
lace_consts = { path = "lace_consts", version = "0.1.4" }
lace_data = { path = "lace_data", version = "0.1.2" }
lace_metadata = { path = "lace_metadata", version = "0.1.4" }
lace_metadata = { path = "lace_metadata", version = "0.2.0" }
dirs = "5"
itertools = "0.11"
num = "0.4"
Expand Down
4 changes: 2 additions & 2 deletions lace/lace_cc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lace_cc"
version = "0.1.6"
version = "0.2.0"
authors = ["Promised AI"]
edition = "2021"
exclude = ["tests/*", "resources/test/*", "target/*"]
Expand All @@ -15,7 +15,7 @@ lace_stats = { path = "../lace_stats", version = "0.1.2" }
lace_geweke = { path = "../lace_geweke", version = "0.1.2" }
lace_consts = { path = "../lace_consts", version = "0.1.4" }
lace_data = { path = "../lace_data", version = "0.1.2" }
lace_codebook = { path = "../lace_codebook", version = "0.1.6" }
lace_codebook = { path = "../lace_codebook", version = "0.2.0" }
rand = {version="0.8", features=["serde1"]}
rayon = "1.5"
serde = { version = "1", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion lace/lace_codebook/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lace_codebook"
version = "0.1.6"
version = "0.2.0"
authors = ["Promised.ai"]
edition = "2021"
license = "SSPL-1.0"
Expand Down
6 changes: 3 additions & 3 deletions lace/lace_metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lace_metadata"
version = "0.1.6"
version = "0.2.0"
authors = ["Promised AI"]
edition = "2021"
license = "SSPL-1.0"
Expand All @@ -11,8 +11,8 @@ description = "Archive of the metadata (savefile) formats for Lace. In charge of
[dependencies]
lace_stats = { path = "../lace_stats", version = "0.1.4" }
lace_data = { path = "../lace_data", version = "0.1.2" }
lace_codebook = { path = "../lace_codebook", version = "0.1.6" }
lace_cc = { path = "../lace_cc", version = "0.1.5" }
lace_codebook = { path = "../lace_codebook", version = "0.2.0" }
lace_cc = { path = "../lace_cc", version = "0.2.0" }
dirs = "5"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9.4"
Expand Down
8 changes: 4 additions & 4 deletions pylace/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 pylace/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ name = "lace"
crate-type = ["cdylib"]

[dependencies]
lace = { path = "../lace", version="0.3.2" }
lace = { path = "../lace", version="0.4.0" }
lace_utils = { path = "../lace/lace_utils", version="0.1.2" }
rand = "0.8.5"
rand_xoshiro = "0.6.0"
Expand Down

0 comments on commit 0cbace9

Please sign in to comment.