Skip to content

Commit

Permalink
bump version numbers to 4.1 (#1245)
Browse files Browse the repository at this point in the history
Signed-off-by: Craig Disselkoen <[email protected]>
  • Loading branch information
cdisselkoen authored Sep 30, 2024
1 parent 6b3a748 commit 7b9a183
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ overflow-checks = true
[workspace.package]
# Check the minimum supported Rust version with `cargo install cargo-msrv && cargo msrv --min 1.X.0` where `X` is something lower than the version noted here (to confirm that versions lower than the one noted here _don't_ work)
rust-version = "1.77"
version = "4.0.0"
version = "4.1.0"
homepage = "https://cedarpolicy.com"
keywords = ["cedar", "authorization", "policy", "security"]
categories = ["compilers", "config"]
Expand Down
4 changes: 2 additions & 2 deletions cedar-policy-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ homepage.workspace = true
repository.workspace = true

[dependencies]
cedar-policy = { version = "=4.0.0", path = "../cedar-policy" }
cedar-policy-formatter = { version = "=4.0.0", path = "../cedar-policy-formatter" }
cedar-policy = { version = "=4.1.0", path = "../cedar-policy" }
cedar-policy-formatter = { version = "=4.1.0", path = "../cedar-policy-formatter" }
clap = { version = "4", features = ["derive", "env"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
Expand Down
2 changes: 1 addition & 1 deletion cedar-policy-formatter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ homepage.workspace = true
repository.workspace = true

[dependencies]
cedar-policy-core = { version = "=4.0.0", path = "../cedar-policy-core" }
cedar-policy-core = { version = "=4.1.0", path = "../cedar-policy-core" }
pretty = "0.12.1"
logos = "0.14.0"
itertools = "0.13"
Expand Down
4 changes: 2 additions & 2 deletions cedar-policy-validator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ homepage.workspace = true
repository.workspace = true

[dependencies]
cedar-policy-core = { version = "=4.0.0", path = "../cedar-policy-core" }
cedar-policy-core = { version = "=4.1.0", path = "../cedar-policy-core" }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
serde_with = "3.0"
Expand Down Expand Up @@ -51,7 +51,7 @@ entity-tags = []
[dev-dependencies]
similar-asserts = "1.5.0"
cool_asserts = "2.0"
cedar-policy-core = { version = "=4.0.0", path = "../cedar-policy-core", features = ["test-util"] }
cedar-policy-core = { version = "=4.1.0", path = "../cedar-policy-core", features = ["test-util"] }
miette = { version = "7.1.0", features = ["fancy"] }

[build-dependencies]
Expand Down
8 changes: 4 additions & 4 deletions cedar-policy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ homepage.workspace = true
repository = "https://github.com/cedar-policy/cedar"

[dependencies]
cedar-policy-core = { version = "=4.0.0", path = "../cedar-policy-core" }
cedar-policy-validator = { version = "=4.0.0", path = "../cedar-policy-validator" }
cedar-policy-formatter = { version = "=4.0.0", path = "../cedar-policy-formatter" }
cedar-policy-core = { version = "=4.1.0", path = "../cedar-policy-core" }
cedar-policy-validator = { version = "=4.1.0", path = "../cedar-policy-validator" }
cedar-policy-formatter = { version = "=4.1.0", path = "../cedar-policy-formatter" }
ref-cast = "1.0"
serde = { version = "1.0", features = ["derive", "rc"] }
serde_json = "1.0"
Expand Down Expand Up @@ -63,7 +63,7 @@ miette = { version = "7.1.0", features = ["fancy"] }
cool_asserts = "2.0"
criterion = "0.5"
globset = "0.4"
cedar-policy-core = { version = "=4.0.0", features = [
cedar-policy-core = { version = "=4.1.0", features = [
"test-util",
], path = "../cedar-policy-core" }
# NON-CRYPTOGRAPHIC random number generators
Expand Down
2 changes: 1 addition & 1 deletion cedar-policy/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5747,7 +5747,7 @@ mod version_tests {

#[test]
fn test_sdk_version() {
assert_eq!(get_sdk_version().to_string(), "4.0.0");
assert_eq!(get_sdk_version().to_string(), "4.1.0");
}

#[test]
Expand Down
6 changes: 3 additions & 3 deletions cedar-testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ license.workspace = true
publish = false

[dependencies]
cedar-policy = { version = "=4.0.0", path = "../cedar-policy" }
cedar-policy-core = { version = "=4.0.0", path = "../cedar-policy-core" }
cedar-policy-validator = { version = "=4.0.0", path = "../cedar-policy-validator" }
cedar-policy = { version = "=4.1.0", path = "../cedar-policy" }
cedar-policy-core = { version = "=4.1.0", path = "../cedar-policy-core" }
cedar-policy-validator = { version = "=4.1.0", path = "../cedar-policy-validator" }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
smol_str = { version = "0.3", features = ["serde"] }
Expand Down
8 changes: 4 additions & 4 deletions cedar-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ license.workspace = true
exclude = ['/build']

[dependencies]
cedar-policy = { version = "=4.0.0", path = "../cedar-policy", features = ["wasm"] }
cedar-policy-core = { version = "=4.0.0", path = "../cedar-policy-core", features = ["wasm"] }
cedar-policy-formatter = { version = "=4.0.0", path = "../cedar-policy-formatter" }
cedar-policy-validator = { version = "=4.0.0", path = "../cedar-policy-validator", features = ["wasm"] }
cedar-policy = { version = "=4.1.0", path = "../cedar-policy", features = ["wasm"] }
cedar-policy-core = { version = "=4.1.0", path = "../cedar-policy-core", features = ["wasm"] }
cedar-policy-formatter = { version = "=4.1.0", path = "../cedar-policy-formatter" }
cedar-policy-validator = { version = "=4.1.0", path = "../cedar-policy-validator", features = ["wasm"] }

serde = { version = "1.0", features = ["derive", "rc"] }
serde-wasm-bindgen = "0.6"
Expand Down

0 comments on commit 7b9a183

Please sign in to comment.