Skip to content

Commit

Permalink
bump release version from 4.3.0 to 4.3.1 (#1441)
Browse files Browse the repository at this point in the history
Signed-off-by: Shaobo He <[email protected]>
  • Loading branch information
shaobo-he-aws authored Jan 23, 2025
1 parent 604c6a1 commit ae49f40
Show file tree
Hide file tree
Showing 9 changed files with 21 additions and 21 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]
Expand Down
8 changes: 4 additions & 4 deletions cedar-policy-cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
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.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"
Expand Down
4 changes: 2 additions & 2 deletions cedar-policy-validator/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.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"
Expand Down Expand Up @@ -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]
Expand Down
8 changes: 4 additions & 4 deletions cedar-policy/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cedar-policy/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand Down
6 changes: 3 additions & 3 deletions cedar-testing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"] }
Expand Down
8 changes: 4 additions & 4 deletions cedar-wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit ae49f40

Please sign in to comment.