Skip to content

Commit

Permalink
Update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Swandog committed Feb 6, 2024
1 parent d66cb65 commit b7f7dbc
Show file tree
Hide file tree
Showing 13 changed files with 48 additions and 48 deletions.
4 changes: 2 additions & 2 deletions book/lace_preprocess_mdbook_yaml/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ path = "src/main.rs"
anyhow = "1.0"
clap = "4.2"
env_logger = "0.10"
lace_codebook = { path = "../../lace/lace_codebook", version = "0.5.0" }
lace_stats = { path = "../../lace/lace_stats", version = "0.2.1" }
lace_codebook = { path = "../../lace/lace_codebook", version = "0.6.0" }
lace_stats = { path = "../../lace/lace_stats", version = "0.3.0" }
log = "0.4"
mdbook = "0.4"
pulldown-cmark = { version = "0.9", default-features = false }
Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lace-cli"
version = "0.6.0"
version = "0.7.0"
authors = ["Promised AI"]
edition = "2021"
rust-version = "1.62.0"
Expand All @@ -17,7 +17,7 @@ name = "lace"
path = "src/main.rs"

[dependencies]
lace = { path = "../lace", version = "0.6.0", features = ["formats", "ctrlc_handler"]}
lace = { path = "../lace", version = "0.7.0", features = ["formats", "ctrlc_handler"]}
clap = { version = "4.3.17", features = ["derive"] }
env_logger = "0.10"
serde_yaml = "0.9.4"
Expand Down
16 changes: 8 additions & 8 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,6 +1,6 @@
[package]
name = "lace"
version = "0.6.0"
version = "0.7.0"
authors = ["Promised AI"]
build = "build.rs"
edition = "2021"
Expand Down Expand Up @@ -31,14 +31,14 @@ name = "lace"
path = "src/lib.rs"

[dependencies]
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.1" }
lace_codebook = { path = "lace_codebook", version = "0.5.0", default_features=false}
lace_geweke = { path = "lace_geweke", version = "0.2.1" }
lace_cc = { path = "lace_cc", version = "0.6.0" }
lace_utils = { path = "lace_utils", version = "0.3.0" }
lace_stats = { path = "lace_stats", version = "0.3.0" }
lace_codebook = { path = "lace_codebook", version = "0.6.0", default_features=false}
lace_geweke = { path = "lace_geweke", version = "0.3.0" }
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.5.0" }
lace_data = { path = "lace_data", version = "0.3.0" }
lace_metadata = { path = "lace_metadata", version = "0.6.0" }
dirs = { version="5", optional = true}
num = "0.4"
rand_xoshiro = { version="0.6", features = ["serde1"] }
Expand Down
12 changes: 6 additions & 6 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.5.0"
version = "0.6.0"
authors = ["Promised AI"]
edition = "2021"
exclude = ["tests/*", "resources/test/*", "target/*"]
Expand All @@ -10,12 +10,12 @@ repository = "https://github.com/promised-ai/lace"
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.1" }
lace_geweke = { path = "../lace_geweke", version = "0.2.1" }
lace_utils = { path = "../lace_utils", version = "0.3.0" }
lace_stats = { path = "../lace_stats", version = "0.3.0" }
lace_geweke = { path = "../lace_geweke", version = "0.3.0" }
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.5.0" }
lace_data = { path = "../lace_data", version = "0.3.0" }
lace_codebook = { path = "../lace_codebook", version = "0.6.0" }
rand = {version="0.8", features=["serde1"]}
rayon = "1.5"
serde = { version = "1", features = ["derive"] }
Expand Down
8 changes: 4 additions & 4 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.5.0"
version = "0.6.0"
authors = ["Promised.ai"]
edition = "2021"
license = "BUSL-1.1"
Expand All @@ -10,9 +10,9 @@ description = "Contains the Lace codebook specification as well as utilities for

[dependencies]
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" }
lace_stats = { path = "../lace_stats", version = "0.3.0" }
lace_utils = { path = "../lace_utils", version = "0.3.0" }
lace_data = { path = "../lace_data", version = "0.3.0" }
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9.4"
thiserror = "1.0.11"
Expand Down
4 changes: 2 additions & 2 deletions lace/lace_data/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lace_data"
version = "0.2.0"
version = "0.3.0"
authors = ["Promised AI"]
edition = "2021"
license = "BUSL-1.1"
Expand All @@ -9,7 +9,7 @@ repository = "https://github.com/promised-ai/lace"
description = "Data definitions and data container definitions for Lace"

[dependencies]
lace_utils = { path = "../lace_utils", version = "0.2.0" }
lace_utils = { path = "../lace_utils", version = "0.3.0" }
serde = { version = "1", features = ["derive"] }
thiserror = "1.0.19"

Expand Down
6 changes: 3 additions & 3 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.1"
version = "0.3.0"
authors = ["Promised AI"]
edition = "2021"
license = "BUSL-1.1"
Expand All @@ -9,8 +9,8 @@ repository = "https://github.com/promised-ai/lace"
description = "Geweke tester for Lace"

[dependencies]
lace_stats = { path = "../lace_stats", version = "0.2.1" }
lace_utils = { path = "../lace_utils", version = "0.2.0" }
lace_stats = { path = "../lace_stats", version = "0.3.0" }
lace_utils = { path = "../lace_utils", version = "0.3.0" }
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9.4"
indicatif = "0.17"
Expand Down
10 changes: 5 additions & 5 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.5.0"
version = "0.6.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.1" }
lace_data = { path = "../lace_data", version = "0.2.0" }
lace_codebook = { path = "../lace_codebook", version = "0.5.0" }
lace_cc = { path = "../lace_cc", version = "0.5.0" }
lace_stats = { path = "../lace_stats", version = "0.3.0" }
lace_data = { path = "../lace_data", version = "0.3.0" }
lace_codebook = { path = "../lace_codebook", version = "0.6.0" }
lace_cc = { path = "../lace_cc", version = "0.6.0" }
serde = { version = "1", features = ["derive"] }
serde_yaml = "0.9.4"
serde_json = "1"
Expand Down
6 changes: 3 additions & 3 deletions lace/lace_stats/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lace_stats"
version = "0.2.1"
version = "0.3.0"
rust-version = "1.62.0"
authors = ["Promised AI"]
edition = "2021"
Expand All @@ -10,9 +10,9 @@ repository = "https://github.com/promised-ai/lace"
description = "Contains component model and hyperprior specifications"

[dependencies]
lace_utils = { path = "../lace_utils", version = "0.2.0" }
lace_utils = { path = "../lace_utils", version = "0.3.0" }
lace_consts = { path = "../lace_consts", version = "0.2.1" }
lace_data = { path = "../lace_data", version = "0.2.0" }
lace_data = { path = "../lace_data", version = "0.3.0" }
special = "0.10"
rand = {version="0.8", features=["serde1"]}
itertools = "0.12"
Expand Down
2 changes: 1 addition & 1 deletion lace/lace_utils/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "lace_utils"
version = "0.2.0"
version = "0.3.0"
authors = ["Promised AI"]
edition = "2021"
license = "BUSL-1.1"
Expand Down
6 changes: 3 additions & 3 deletions pylace/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pylace"
version = "0.6.0"
version = "0.7.0"
edition = "2021"
license = "BUSL-1.1"

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

[dependencies]
lace = { path = "../lace", version="0.6.0" }
lace_utils = { path = "../lace/lace_utils", version="0.2.0" }
lace = { path = "../lace", version="0.7.0" }
lace_utils = { path = "../lace/lace_utils", version="0.3.0" }
rand = "0.8.5"
rand_xoshiro = "0.6.0"
pyo3 = { version = "0.20", features = ["extension-module"] }
Expand Down
2 changes: 1 addition & 1 deletion pylace/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "pylace"
version = "0.6.0"
version = "0.7.0"
description = "A probabalistic programming ML tool for science"
requires-python = ">=3.8"
classifiers = [
Expand Down

0 comments on commit b7f7dbc

Please sign in to comment.