Skip to content

Commit be723f7

Browse files
authored
[4.5.x] update crate and lang versions (#1679)
Signed-off-by: Craig Disselkoen <[email protected]>
1 parent e81ce77 commit be723f7

File tree

9 files changed

+21
-21
lines changed

9 files changed

+21
-21
lines changed

Cargo.lock

Lines changed: 6 additions & 6 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
@@ -22,7 +22,7 @@ debug = "line-tables-only" # this adds more debug symbols/info to the binary th
2222
[workspace.package]
2323
# 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)
2424
rust-version = "1.82"
25-
version = "4.4.0"
25+
version = "4.5.0"
2626
homepage = "https://cedarpolicy.com"
2727
keywords = ["cedar", "authorization", "policy", "security"]
2828
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.4.0", path = "../cedar-policy" }
15-
cedar-policy-formatter = { version = "=4.4.0", path = "../cedar-policy-formatter" }
14+
cedar-policy = { version = "=4.5.0", path = "../cedar-policy" }
15+
cedar-policy-formatter = { version = "=4.5.0", 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.4.0", path = "../cedar-policy-core" }
14+
cedar-policy-core = { version = "=4.5.0", path = "../cedar-policy-core" }
1515
pretty = "0.12.4"
1616
logos = "0.15.0"
1717
itertools = "0.14"

cedar-policy/Cargo.toml

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

1313
[dependencies]
14-
cedar-policy-core = { version = "=4.4.0", path = "../cedar-policy-core" }
15-
cedar-policy-formatter = { version = "=4.4.0", path = "../cedar-policy-formatter" }
14+
cedar-policy-core = { version = "=4.5.0", path = "../cedar-policy-core" }
15+
cedar-policy-formatter = { version = "=4.5.0", path = "../cedar-policy-formatter" }
1616
ref-cast = "1.0"
1717
serde = { version = "1.0", features = ["derive", "rc"] }
1818
serde_json = "1.0"
@@ -74,7 +74,7 @@ miette = { version = "7.6.0", features = ["fancy"] }
7474
cool_asserts = "2.0"
7575
criterion = "0.6"
7676
globset = "0.4"
77-
cedar-policy-core = { version = "=4.4.0", features = [
77+
cedar-policy-core = { version = "=4.5.0", features = [
7878
"test-util",
7979
], path = "../cedar-policy-core" }
8080
# NON-CRYPTOGRAPHIC random number generators

cedar-policy/src/api.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ pub(crate) mod version {
7575
static ref SDK_VERSION: Version = env!("CARGO_PKG_VERSION").parse().unwrap();
7676
// Cedar language version
7777
// The patch version field may be unnecessary
78-
static ref LANG_VERSION: Version = Version::new(4, 3, 0);
78+
static ref LANG_VERSION: Version = Version::new(4, 4, 0);
7979
}
8080
/// Get the Cedar SDK Semantic Versioning version
8181
#[allow(clippy::module_name_repetitions)]

cedar-policy/src/test/test.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7276,12 +7276,12 @@ mod version_tests {
72767276

72777277
#[test]
72787278
fn test_sdk_version() {
7279-
assert_eq!(get_sdk_version().to_string(), "4.4.0");
7279+
assert_eq!(get_sdk_version().to_string(), "4.5.0");
72807280
}
72817281

72827282
#[test]
72837283
fn test_lang_version() {
7284-
assert_eq!(get_lang_version().to_string(), "4.3.0");
7284+
assert_eq!(get_lang_version().to_string(), "4.4.0");
72857285
}
72867286
}
72877287

cedar-testing/Cargo.toml

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

88
[dependencies]
9-
cedar-policy = { version = "=4.4.0", path = "../cedar-policy" }
10-
cedar-policy-core = { version = "=4.4.0", path = "../cedar-policy-core" }
9+
cedar-policy = { version = "=4.5.0", path = "../cedar-policy" }
10+
cedar-policy-core = { version = "=4.5.0", path = "../cedar-policy-core" }
1111
serde = { version = "1.0", features = ["derive"] }
1212
serde_json = "1.0"
1313
smol_str = { version = "0.3", features = ["serde"] }

cedar-wasm/Cargo.toml

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

1111
[dependencies]
12-
cedar-policy = { version = "=4.4.0", path = "../cedar-policy", features = ["wasm"] }
13-
cedar-policy-core = { version = "=4.4.0", path = "../cedar-policy-core", features = ["wasm"] }
14-
cedar-policy-formatter = { version = "=4.4.0", path = "../cedar-policy-formatter" }
12+
cedar-policy = { version = "=4.5.0", path = "../cedar-policy", features = ["wasm"] }
13+
cedar-policy-core = { version = "=4.5.0", path = "../cedar-policy-core", features = ["wasm"] }
14+
cedar-policy-formatter = { version = "=4.5.0", path = "../cedar-policy-formatter" }
1515

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

0 commit comments

Comments
 (0)