Skip to content

Commit 4dea3e6

Browse files
authored
Update version to 4.2.2 (#1315)
Signed-off-by: Adrian Palacios <[email protected]>
1 parent 4772404 commit 4dea3e6

File tree

9 files changed

+25
-110
lines changed

9 files changed

+25
-110
lines changed

Cargo.lock

Lines changed: 7 additions & 92 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ overflow-checks = true
1919
[workspace.package]
2020
# 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)
2121
rust-version = "1.77"
22-
version = "4.2.1"
22+
version = "4.2.2"
2323
homepage = "https://cedarpolicy.com"
2424
keywords = ["cedar", "authorization", "policy", "security"]
2525
categories = ["compilers", "config"]

cedar-policy-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ homepage.workspace = true
1111
repository.workspace = true
1212

1313
[dependencies]
14-
cedar-policy = { version = "=4.2.1", path = "../cedar-policy" }
15-
cedar-policy-formatter = { version = "=4.2.1", path = "../cedar-policy-formatter" }
14+
cedar-policy = { version = "=4.2.2", path = "../cedar-policy" }
15+
cedar-policy-formatter = { version = "=4.2.2", path = "../cedar-policy-formatter" }
1616
clap = { version = "4", features = ["derive", "env"] }
1717
serde = { version = "1.0", features = ["derive"] }
1818
serde_json = "1.0"

cedar-policy-formatter/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ homepage.workspace = true
1111
repository.workspace = true
1212

1313
[dependencies]
14-
cedar-policy-core = { version = "=4.2.1", path = "../cedar-policy-core" }
14+
cedar-policy-core = { version = "=4.2.2", path = "../cedar-policy-core" }
1515
pretty = "0.12.1"
1616
logos = "0.14.0"
1717
itertools = "0.13"

cedar-policy-validator/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ homepage.workspace = true
1111
repository.workspace = true
1212

1313
[dependencies]
14-
cedar-policy-core = { version = "=4.2.1", path = "../cedar-policy-core" }
14+
cedar-policy-core = { version = "=4.2.2", path = "../cedar-policy-core" }
1515
serde = { version = "1.0", features = ["derive"] }
1616
serde_json = { version = "1.0", features = ["preserve_order"] }
1717
serde_with = "3.0"
@@ -52,7 +52,7 @@ entity-manifest = []
5252
[dev-dependencies]
5353
similar-asserts = "1.5.0"
5454
cool_asserts = "2.0"
55-
cedar-policy-core = { version = "=4.2.1", path = "../cedar-policy-core", features = ["test-util"] }
55+
cedar-policy-core = { version = "=4.2.2", path = "../cedar-policy-core", features = ["test-util"] }
5656
miette = { version = "7.1.0", features = ["fancy"] }
5757

5858
[build-dependencies]

cedar-policy/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ homepage.workspace = true
1111
repository = "https://github.com/cedar-policy/cedar"
1212

1313
[dependencies]
14-
cedar-policy-core = { version = "=4.2.1", path = "../cedar-policy-core" }
15-
cedar-policy-validator = { version = "=4.2.1", path = "../cedar-policy-validator" }
16-
cedar-policy-formatter = { version = "=4.2.1", path = "../cedar-policy-formatter" }
14+
cedar-policy-core = { version = "=4.2.2", path = "../cedar-policy-core" }
15+
cedar-policy-validator = { version = "=4.2.2", path = "../cedar-policy-validator" }
16+
cedar-policy-formatter = { version = "=4.2.2", path = "../cedar-policy-formatter" }
1717
ref-cast = "1.0"
1818
serde = { version = "1.0", features = ["derive", "rc"] }
1919
serde_json = "1.0"
@@ -64,7 +64,7 @@ miette = { version = "7.1.0", features = ["fancy"] }
6464
cool_asserts = "2.0"
6565
criterion = "0.5"
6666
globset = "0.4"
67-
cedar-policy-core = { version = "=4.2.1", features = [
67+
cedar-policy-core = { version = "=4.2.2", features = [
6868
"test-util",
6969
], path = "../cedar-policy-core" }
7070
# NON-CRYPTOGRAPHIC random number generators

cedar-policy/src/tests.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6202,7 +6202,7 @@ mod version_tests {
62026202

62036203
#[test]
62046204
fn test_sdk_version() {
6205-
assert_eq!(get_sdk_version().to_string(), "4.2.1");
6205+
assert_eq!(get_sdk_version().to_string(), "4.2.2");
62066206
}
62076207

62086208
#[test]

cedar-testing/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ license.workspace = true
66
publish = false
77

88
[dependencies]
9-
cedar-policy = { version = "=4.2.1", path = "../cedar-policy" }
10-
cedar-policy-core = { version = "=4.2.1", path = "../cedar-policy-core" }
11-
cedar-policy-validator = { version = "=4.2.1", path = "../cedar-policy-validator" }
9+
cedar-policy = { version = "=4.2.2", path = "../cedar-policy" }
10+
cedar-policy-core = { version = "=4.2.2", path = "../cedar-policy-core" }
11+
cedar-policy-validator = { version = "=4.2.2", path = "../cedar-policy-validator" }
1212
serde = { version = "1.0", features = ["derive"] }
1313
serde_json = "1.0"
1414
smol_str = { version = "0.3", features = ["serde"] }

cedar-wasm/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ license.workspace = true
99
exclude = ['/build']
1010

1111
[dependencies]
12-
cedar-policy = { version = "=4.2.1", path = "../cedar-policy", features = ["wasm"] }
13-
cedar-policy-core = { version = "=4.2.1", path = "../cedar-policy-core", features = ["wasm"] }
14-
cedar-policy-formatter = { version = "=4.2.1", path = "../cedar-policy-formatter" }
15-
cedar-policy-validator = { version = "=4.2.1", path = "../cedar-policy-validator", features = ["wasm"] }
12+
cedar-policy = { version = "=4.2.2", path = "../cedar-policy", features = ["wasm"] }
13+
cedar-policy-core = { version = "=4.2.2", path = "../cedar-policy-core", features = ["wasm"] }
14+
cedar-policy-formatter = { version = "=4.2.2", path = "../cedar-policy-formatter" }
15+
cedar-policy-validator = { version = "=4.2.2", path = "../cedar-policy-validator", features = ["wasm"] }
1616

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

0 commit comments

Comments
 (0)