Skip to content

Commit ba27ea2

Browse files
authored
bump version to 4.3.3 (#1490)
Signed-off-by: Craig Disselkoen <[email protected]>
1 parent 3739db6 commit ba27ea2

File tree

9 files changed

+25
-25
lines changed

9 files changed

+25
-25
lines changed

Cargo.lock

Lines changed: 7 additions & 7 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
@@ -23,7 +23,7 @@ debug = "line-tables-only" # this adds more debug symbols/info to the binary th
2323
[workspace.package]
2424
# 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)
2525
rust-version = "1.77"
26-
version = "4.3.2"
26+
version = "4.3.3"
2727
homepage = "https://cedarpolicy.com"
2828
keywords = ["cedar", "authorization", "policy", "security"]
2929
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.3.2", path = "../cedar-policy" }
15-
cedar-policy-formatter = { version = "=4.3.2", path = "../cedar-policy-formatter" }
14+
cedar-policy = { version = "=4.3.3", path = "../cedar-policy" }
15+
cedar-policy-formatter = { version = "=4.3.3", 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.3.2", path = "../cedar-policy-core" }
14+
cedar-policy-core = { version = "=4.3.3", path = "../cedar-policy-core" }
1515
pretty = "0.12.1"
1616
logos = "0.15.0"
1717
itertools = "0.14"

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.3.2", path = "../cedar-policy-core" }
14+
cedar-policy-core = { version = "=4.3.3", path = "../cedar-policy-core" }
1515
serde = { version = "1.0", features = ["derive"] }
1616
serde_json = { version = "1.0", features = ["preserve_order"] }
1717
serde_with = "3.12"
@@ -54,7 +54,7 @@ entity-manifest = []
5454
[dev-dependencies]
5555
similar-asserts = "1.5.0"
5656
cool_asserts = "2.0"
57-
cedar-policy-core = { version = "=4.3.2", path = "../cedar-policy-core", features = ["test-util"] }
57+
cedar-policy-core = { version = "=4.3.3", path = "../cedar-policy-core", features = ["test-util"] }
5858
miette = { version = "7.4.0", features = ["fancy"] }
5959

6060
[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.3.2", path = "../cedar-policy-core" }
15-
cedar-policy-validator = { version = "=4.3.2", path = "../cedar-policy-validator" }
16-
cedar-policy-formatter = { version = "=4.3.2", path = "../cedar-policy-formatter" }
14+
cedar-policy-core = { version = "=4.3.3", path = "../cedar-policy-core" }
15+
cedar-policy-validator = { version = "=4.3.3", path = "../cedar-policy-validator" }
16+
cedar-policy-formatter = { version = "=4.3.3", path = "../cedar-policy-formatter" }
1717
ref-cast = "1.0"
1818
serde = { version = "1.0", features = ["derive", "rc"] }
1919
serde_json = "1.0"
@@ -70,7 +70,7 @@ miette = { version = "7.4.0", features = ["fancy"] }
7070
cool_asserts = "2.0"
7171
criterion = "0.5"
7272
globset = "0.4"
73-
cedar-policy-core = { version = "=4.3.2", features = [
73+
cedar-policy-core = { version = "=4.3.3", features = [
7474
"test-util",
7575
], path = "../cedar-policy-core" }
7676
# NON-CRYPTOGRAPHIC random number generators

cedar-policy/src/tests.rs

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

62886288
#[test]
62896289
fn test_sdk_version() {
6290-
assert_eq!(get_sdk_version().to_string(), "4.3.2");
6290+
assert_eq!(get_sdk_version().to_string(), "4.3.3");
62916291
}
62926292

62936293
#[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.3.2", path = "../cedar-policy" }
10-
cedar-policy-core = { version = "=4.3.2", path = "../cedar-policy-core" }
11-
cedar-policy-validator = { version = "=4.3.2", path = "../cedar-policy-validator" }
9+
cedar-policy = { version = "=4.3.3", path = "../cedar-policy" }
10+
cedar-policy-core = { version = "=4.3.3", path = "../cedar-policy-core" }
11+
cedar-policy-validator = { version = "=4.3.3", 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.3.2", path = "../cedar-policy", features = ["wasm"] }
13-
cedar-policy-core = { version = "=4.3.2", path = "../cedar-policy-core", features = ["wasm"] }
14-
cedar-policy-formatter = { version = "=4.3.2", path = "../cedar-policy-formatter" }
15-
cedar-policy-validator = { version = "=4.3.2", path = "../cedar-policy-validator", features = ["wasm"] }
12+
cedar-policy = { version = "=4.3.3", path = "../cedar-policy", features = ["wasm"] }
13+
cedar-policy-core = { version = "=4.3.3", path = "../cedar-policy-core", features = ["wasm"] }
14+
cedar-policy-formatter = { version = "=4.3.3", path = "../cedar-policy-formatter" }
15+
cedar-policy-validator = { version = "=4.3.3", 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)