Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ debug = "line-tables-only" # this adds more debug symbols/info to the binary th
[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.85"
version = "4.5.1"
version = "4.6.0"
homepage = "https://cedarpolicy.com"
keywords = ["cedar", "authorization", "policy", "security"]
categories = ["compilers", "config"]
Expand Down
6 changes: 3 additions & 3 deletions cedar-language-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,9 @@ homepage.workspace = true
repository.workspace = true

[dependencies]
cedar-policy-core = { version = "=4.5.1", path = "../cedar-policy-core", features = ["tolerant-ast", "extended-schema"] }
cedar-policy-formatter = { version = "=4.5.1", path = "../cedar-policy-formatter", features = ["tolerant-ast"] }
cedar-policy = { version = "=4.5.1", path = "../cedar-policy", features = ["tolerant-ast"]}
cedar-policy-core = { version = "=4.6.0", path = "../cedar-policy-core", features = ["tolerant-ast", "extended-schema"] }
cedar-policy-formatter = { version = "=4.6.0", path = "../cedar-policy-formatter", features = ["tolerant-ast"] }
cedar-policy = { version = "=4.6.0", path = "../cedar-policy", features = ["tolerant-ast"]}
anyhow = "1.0.100"
itertools = "0.14.0"
miette = "7.4.0"
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.5.1", path = "../cedar-policy" }
cedar-policy-formatter = { version = "=4.5.1", path = "../cedar-policy-formatter" }
cedar-policy = { version = "=4.6.0", path = "../cedar-policy" }
cedar-policy-formatter = { version = "=4.6.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.5.1", path = "../cedar-policy-core" }
cedar-policy-core = { version = "=4.6.0", path = "../cedar-policy-core" }
pretty = "0.12.5"
logos = "0.15.1"
itertools = "0.14"
Expand Down
6 changes: 3 additions & 3 deletions cedar-policy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ homepage.workspace = true
repository = "https://github.com/cedar-policy/cedar"

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

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

#[test]
Expand Down
2 changes: 1 addition & 1 deletion cedar-testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ license.workspace = true
publish = false

[dependencies]
cedar-policy = { version = "=4.5.1", path = "../cedar-policy", features = ["partial-eval", "tpe"] }
cedar-policy = { version = "=4.6.0", path = "../cedar-policy", features = ["partial-eval", "tpe"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
smol_str = { version = "0.3", features = ["serde"] }
Expand Down
6 changes: 3 additions & 3 deletions cedar-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ license.workspace = true
exclude = ['/build']

[dependencies]
cedar-policy = { version = "=4.5.1", path = "../cedar-policy", features = ["wasm"] }
cedar-policy-core = { version = "=4.5.1", path = "../cedar-policy-core", features = ["wasm"] }
cedar-policy-formatter = { version = "=4.5.1", path = "../cedar-policy-formatter" }
cedar-policy = { version = "=4.6.0", path = "../cedar-policy", features = ["wasm"] }
cedar-policy-core = { version = "=4.6.0", path = "../cedar-policy-core", features = ["wasm"] }
cedar-policy-formatter = { version = "=4.6.0", path = "../cedar-policy-formatter" }

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