Skip to content

Commit

Permalink
bump versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Baxter Eaves committed Jan 16, 2024
1 parent cc6fca3 commit 41ad2a5
Show file tree
Hide file tree
Showing 15 changed files with 57 additions and 55 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Removed internal implimentation of `logsumexp` in favor of `rv::misc::logsumexp`
- Update to rv 0.16.2
- Impute and prediction uncertainty are the mean total variation distance between each state's distribution and the average distribution divided by the potential max: `(n-1) / n`, where `n` is the number of states. This normalization is meant to ensure that the interpretation is the same regardless of the number of states -- zero is lowest, one is highest.
- Bump min rust version to `1.62` to support `f64::total_cmp`

### Fixed

Expand Down
16 changes: 8 additions & 8 deletions cli/Cargo.lock

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

6 changes: 3 additions & 3 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[package]
name = "lace-cli"
version = "0.5.1"
version = "0.6.0"
authors = ["Promised AI"]
edition = "2021"
rust-version = "1.58.1"
rust-version = "1.62.0"
license = "BUSL-1.1"
homepage = "https://www.lace.dev/"
repository = "https://github.com/promised-ai/lace"
Expand All @@ -17,7 +17,7 @@ name = "lace"
path = "src/main.rs"

[dependencies]
lace = { path = "../lace", version = "0.5.0", features = ["formats", "ctrlc_handler"]}
lace = { path = "../lace", version = "0.6.0", features = ["formats", "ctrlc_handler"]}
clap = { version = "4.3.17", features = ["derive"] }
env_logger = "0.10"
serde_yaml = "0.9.4"
Expand Down
14 changes: 7 additions & 7 deletions lace/Cargo.lock

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

16 changes: 8 additions & 8 deletions lace/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "lace"
version = "0.5.1"
version = "0.6.0"
authors = ["Promised AI"]
build = "build.rs"
edition = "2021"
exclude = ["resources/test/*", "target/*"]
rust-version = "1.58.1"
rust-version = "1.62.0"
license = "BUSL-1.1"
homepage = "https://www.lace.dev/"
repository = "https://github.com/promised-ai/lace"
Expand All @@ -31,14 +31,14 @@ name = "lace"
path = "src/lib.rs"

[dependencies]
lace_cc = { path = "lace_cc", version = "0.4.0" }
lace_cc = { path = "lace_cc", version = "0.5.0" }
lace_utils = { path = "lace_utils", version = "0.2.0" }
lace_stats = { path = "lace_stats", version = "0.2.0" }
lace_codebook = { path = "lace_codebook", version = "0.4.0", default_features=false}
lace_geweke = { path = "lace_geweke", version = "0.2.0" }
lace_consts = { path = "lace_consts", version = "0.2.0" }
lace_stats = { path = "lace_stats", version = "0.2.1" }
lace_codebook = { path = "lace_codebook", version = "0.5.0", default_features=false}
lace_geweke = { path = "lace_geweke", version = "0.2.1" }
lace_consts = { path = "lace_consts", version = "0.2.1" }
lace_data = { path = "lace_data", version = "0.2.0" }
lace_metadata = { path = "lace_metadata", version = "0.4.0" }
lace_metadata = { path = "lace_metadata", version = "0.5.0" }
dirs = { version="5", optional = true}
itertools = "0.11"
num = "0.4"
Expand Down
10 changes: 5 additions & 5 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.4.0"
version = "0.5.0"
authors = ["Promised AI"]
edition = "2021"
exclude = ["tests/*", "resources/test/*", "target/*"]
Expand All @@ -11,11 +11,11 @@ description = "Core of the Lace cross-categorization engine library"

[dependencies]
lace_utils = { path = "../lace_utils", version = "0.2.0" }
lace_stats = { path = "../lace_stats", version = "0.2.0" }
lace_geweke = { path = "../lace_geweke", version = "0.2.0" }
lace_consts = { path = "../lace_consts", version = "0.2.0" }
lace_stats = { path = "../lace_stats", version = "0.2.1" }
lace_geweke = { path = "../lace_geweke", version = "0.2.1" }
lace_consts = { path = "../lace_consts", version = "0.2.1" }
lace_data = { path = "../lace_data", version = "0.2.0" }
lace_codebook = { path = "../lace_codebook", version = "0.4.0" }
lace_codebook = { path = "../lace_codebook", version = "0.5.0" }
rand = {version="0.8", features=["serde1"]}
rayon = "1.5"
serde = { version = "1", features = ["derive"] }
Expand Down
6 changes: 3 additions & 3 deletions 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.4.0"
version = "0.5.0"
authors = ["Promised.ai"]
edition = "2021"
license = "BUSL-1.1"
Expand All @@ -9,8 +9,8 @@ repository = "https://github.com/promised-ai/lace"
description = "Contains the Lace codebook specification as well as utilities for generating defaults"

[dependencies]
lace_consts = { path = "../lace_consts", version = "0.2.0" }
lace_stats = { path = "../lace_stats", version = "0.2.0" }
lace_consts = { path = "../lace_consts", version = "0.2.1" }
lace_stats = { path = "../lace_stats", version = "0.2.1" }
lace_utils = { path = "../lace_utils", version = "0.2.0" }
lace_data = { path = "../lace_data", version = "0.2.0" }
serde = { version = "1", features = ["derive"] }
Expand Down
2 changes: 1 addition & 1 deletion lace/lace_consts/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lace_consts"
version = "0.2.0"
version = "0.2.1"
authors = ["Promied AI"]
edition = "2021"
license = "BUSL-1.1"
Expand Down
4 changes: 2 additions & 2 deletions lace/lace_geweke/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lace_geweke"
version = "0.2.0"
version = "0.2.1"
authors = ["Promised AI"]
edition = "2021"
license = "BUSL-1.1"
Expand All @@ -9,7 +9,7 @@ repository = "https://github.com/promised-ai/lace"
description = "Geweke tester for Lace"

[dependencies]
lace_stats = { path = "../lace_stats", version = "0.2.0" }
lace_stats = { path = "../lace_stats", version = "0.2.1" }
lace_utils = { path = "../lace_utils", version = "0.2.0" }
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9.4"
Expand Down
8 changes: 4 additions & 4 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.4.0"
version = "0.5.0"
authors = ["Promised AI"]
edition = "2021"
license = "BUSL-1.1"
Expand All @@ -9,10 +9,10 @@ repository = "https://github.com/promised-ai/lace"
description = "Archive of the metadata (savefile) formats for Lace. In charge of versioning and conversion."

[dependencies]
lace_stats = { path = "../lace_stats", version = "0.2.0" }
lace_stats = { path = "../lace_stats", version = "0.2.1" }
lace_data = { path = "../lace_data", version = "0.2.0" }
lace_codebook = { path = "../lace_codebook", version = "0.4.0" }
lace_cc = { path = "../lace_cc", version = "0.4.0" }
lace_codebook = { path = "../lace_codebook", version = "0.5.0" }
lace_cc = { path = "../lace_cc", version = "0.5.0" }
dirs = "5"
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9.4"
Expand Down
5 changes: 3 additions & 2 deletions lace/lace_stats/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
[package]
name = "lace_stats"
version = "0.2.0"
version = "0.2.1"
rust-version = "1.62.0"
authors = ["Promised AI"]
edition = "2021"
license = "BUSL-1.1"
Expand All @@ -10,7 +11,7 @@ description = "Contains component model and hyperprior specifications"

[dependencies]
lace_utils = { path = "../lace_utils", version = "0.2.0" }
lace_consts = { path = "../lace_consts", version = "0.2.0" }
lace_consts = { path = "../lace_consts", version = "0.2.1" }
lace_data = { path = "../lace_data", version = "0.2.0" }
special = "0.10"
rand = {version="0.8", features=["serde1"]}
Expand Down
16 changes: 8 additions & 8 deletions pylace/Cargo.lock

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

4 changes: 2 additions & 2 deletions pylace/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pylace"
version = "0.5.1"
version = "0.6.0"
edition = "2021"
license = "BUSL-1.1"

Expand All @@ -9,7 +9,7 @@ name = "lace"
crate-type = ["cdylib"]

[dependencies]
lace = { path = "../lace", version="0.5.1" }
lace = { path = "../lace", version="0.6.0" }
lace_utils = { path = "../lace/lace_utils", version="0.2.0" }
rand = "0.8.5"
rand_xoshiro = "0.6.0"
Expand Down
Loading

0 comments on commit 41ad2a5

Please sign in to comment.