From ae49f4096f27eca7bc7569862ad17e96586439de Mon Sep 17 00:00:00 2001 From: shaobo-he-aws <130499339+shaobo-he-aws@users.noreply.github.com> Date: Thu, 23 Jan 2025 11:01:22 -0800 Subject: [PATCH] bump release version from 4.3.0 to 4.3.1 (#1441) Signed-off-by: Shaobo He --- .github/workflows/ci.yml | 2 +- Cargo.toml | 2 +- cedar-policy-cli/Cargo.toml | 8 ++++---- cedar-policy-formatter/Cargo.toml | 2 +- cedar-policy-validator/Cargo.toml | 4 ++-- cedar-policy/Cargo.toml | 8 ++++---- cedar-policy/src/tests.rs | 2 +- cedar-testing/Cargo.toml | 6 +++--- cedar-wasm/Cargo.toml | 8 ++++---- 9 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6af8d21f1..f13ed040f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,5 +43,5 @@ jobs: - run: sudo apt-get install protobuf-compiler - run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }} - run: cargo install cargo-semver-checks - - run: cargo semver-checks check-release --package cedar-policy --baseline-root ../base + - run: cargo semver-checks check-release --package cedar-policy --baseline-root ../base --default-features working-directory: head diff --git a/Cargo.toml b/Cargo.toml index 3a0864268..03d0bace5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -23,7 +23,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.77" -version = "4.3.0" +version = "4.3.1" homepage = "https://cedarpolicy.com" keywords = ["cedar", "authorization", "policy", "security"] categories = ["compilers", "config"] diff --git a/cedar-policy-cli/Cargo.toml b/cedar-policy-cli/Cargo.toml index 6d0fa8a66..ed4659daf 100644 --- a/cedar-policy-cli/Cargo.toml +++ b/cedar-policy-cli/Cargo.toml @@ -11,10 +11,10 @@ homepage.workspace = true repository.workspace = true [dependencies] -cedar-policy = { version = "=4.3.0", path = "../cedar-policy" } -cedar-policy-formatter = { version = "=4.3.0", path = "../cedar-policy-formatter" } -cedar-policy-core = { version = "=4.3.0", path = "../cedar-policy-core" } -cedar-policy-validator = { version = "=4.3.0", path = "../cedar-policy-validator" } +cedar-policy = { version = "=4.3.1", path = "../cedar-policy" } +cedar-policy-formatter = { version = "=4.3.1", path = "../cedar-policy-formatter" } +cedar-policy-core = { version = "=4.3.1", path = "../cedar-policy-core" } +cedar-policy-validator = { version = "=4.3.1", path = "../cedar-policy-validator" } clap = { version = "4", features = ["derive", "env"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" diff --git a/cedar-policy-formatter/Cargo.toml b/cedar-policy-formatter/Cargo.toml index 97e44a4f0..42c8b0843 100644 --- a/cedar-policy-formatter/Cargo.toml +++ b/cedar-policy-formatter/Cargo.toml @@ -11,7 +11,7 @@ homepage.workspace = true repository.workspace = true [dependencies] -cedar-policy-core = { version = "=4.3.0", path = "../cedar-policy-core" } +cedar-policy-core = { version = "=4.3.1", path = "../cedar-policy-core" } pretty = "0.12.1" logos = "0.15.0" itertools = "0.14" diff --git a/cedar-policy-validator/Cargo.toml b/cedar-policy-validator/Cargo.toml index a5f6de4eb..b86ceac1f 100644 --- a/cedar-policy-validator/Cargo.toml +++ b/cedar-policy-validator/Cargo.toml @@ -11,7 +11,7 @@ homepage.workspace = true repository.workspace = true [dependencies] -cedar-policy-core = { version = "=4.3.0", path = "../cedar-policy-core" } +cedar-policy-core = { version = "=4.3.1", path = "../cedar-policy-core" } serde = { version = "1.0", features = ["derive"] } serde_json = { version = "1.0", features = ["preserve_order"] } serde_with = "3.12" @@ -58,7 +58,7 @@ entity-manifest = [] [dev-dependencies] similar-asserts = "1.5.0" cool_asserts = "2.0" -cedar-policy-core = { version = "=4.3.0", path = "../cedar-policy-core", features = ["test-util"] } +cedar-policy-core = { version = "=4.3.1", path = "../cedar-policy-core", features = ["test-util"] } miette = { version = "7.4.0", features = ["fancy"] } [build-dependencies] diff --git a/cedar-policy/Cargo.toml b/cedar-policy/Cargo.toml index a34e2ed9b..a0d54809b 100644 --- a/cedar-policy/Cargo.toml +++ b/cedar-policy/Cargo.toml @@ -11,9 +11,9 @@ homepage.workspace = true repository = "https://github.com/cedar-policy/cedar" [dependencies] -cedar-policy-core = { version = "=4.3.0", path = "../cedar-policy-core" } -cedar-policy-validator = { version = "=4.3.0", path = "../cedar-policy-validator" } -cedar-policy-formatter = { version = "=4.3.0", path = "../cedar-policy-formatter" } +cedar-policy-core = { version = "=4.3.1", path = "../cedar-policy-core" } +cedar-policy-validator = { version = "=4.3.1", path = "../cedar-policy-validator" } +cedar-policy-formatter = { version = "=4.3.1", path = "../cedar-policy-formatter" } ref-cast = "1.0" serde = { version = "1.0", features = ["derive", "rc"] } serde_json = "1.0" @@ -67,7 +67,7 @@ miette = { version = "7.4.0", features = ["fancy"] } cool_asserts = "2.0" criterion = "0.5" globset = "0.4" -cedar-policy-core = { version = "=4.3.0", features = [ +cedar-policy-core = { version = "=4.3.1", features = [ "test-util", ], path = "../cedar-policy-core" } # NON-CRYPTOGRAPHIC random number generators diff --git a/cedar-policy/src/tests.rs b/cedar-policy/src/tests.rs index 89ed83c85..86c8abaf7 100644 --- a/cedar-policy/src/tests.rs +++ b/cedar-policy/src/tests.rs @@ -6287,7 +6287,7 @@ mod version_tests { #[test] fn test_sdk_version() { - assert_eq!(get_sdk_version().to_string(), "4.3.0"); + assert_eq!(get_sdk_version().to_string(), "4.3.1"); } #[test] diff --git a/cedar-testing/Cargo.toml b/cedar-testing/Cargo.toml index 809b5491a..d6f991116 100644 --- a/cedar-testing/Cargo.toml +++ b/cedar-testing/Cargo.toml @@ -6,9 +6,9 @@ license.workspace = true publish = false [dependencies] -cedar-policy = { version = "=4.3.0", path = "../cedar-policy" } -cedar-policy-core = { version = "=4.3.0", path = "../cedar-policy-core" } -cedar-policy-validator = { version = "=4.3.0", path = "../cedar-policy-validator" } +cedar-policy = { version = "=4.3.1", path = "../cedar-policy" } +cedar-policy-core = { version = "=4.3.1", path = "../cedar-policy-core" } +cedar-policy-validator = { version = "=4.3.1", path = "../cedar-policy-validator" } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" smol_str = { version = "0.3", features = ["serde"] } diff --git a/cedar-wasm/Cargo.toml b/cedar-wasm/Cargo.toml index 2629107d3..047119272 100644 --- a/cedar-wasm/Cargo.toml +++ b/cedar-wasm/Cargo.toml @@ -9,10 +9,10 @@ license.workspace = true exclude = ['/build'] [dependencies] -cedar-policy = { version = "=4.3.0", path = "../cedar-policy", features = ["wasm"] } -cedar-policy-core = { version = "=4.3.0", path = "../cedar-policy-core", features = ["wasm"] } -cedar-policy-formatter = { version = "=4.3.0", path = "../cedar-policy-formatter" } -cedar-policy-validator = { version = "=4.3.0", path = "../cedar-policy-validator", features = ["wasm"] } +cedar-policy = { version = "=4.3.1", path = "../cedar-policy", features = ["wasm"] } +cedar-policy-core = { version = "=4.3.1", path = "../cedar-policy-core", features = ["wasm"] } +cedar-policy-formatter = { version = "=4.3.1", path = "../cedar-policy-formatter" } +cedar-policy-validator = { version = "=4.3.1", path = "../cedar-policy-validator", features = ["wasm"] } serde = { version = "1.0", features = ["derive", "rc"] } serde-wasm-bindgen = "0.6"