Skip to content

Commit ae49f40

Browse files
bump release version from 4.3.0 to 4.3.1 (#1441)
Signed-off-by: Shaobo He <[email protected]>
1 parent 604c6a1 commit ae49f40

File tree

9 files changed

+21
-21
lines changed

9 files changed

+21
-21
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,5 +43,5 @@ jobs:
4343
- run: sudo apt-get install protobuf-compiler
4444
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
4545
- run: cargo install cargo-semver-checks
46-
- run: cargo semver-checks check-release --package cedar-policy --baseline-root ../base
46+
- run: cargo semver-checks check-release --package cedar-policy --baseline-root ../base --default-features
4747
working-directory: head

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.0"
26+
version = "4.3.1"
2727
homepage = "https://cedarpolicy.com"
2828
keywords = ["cedar", "authorization", "policy", "security"]
2929
categories = ["compilers", "config"]

cedar-policy-cli/Cargo.toml

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

1313
[dependencies]
14-
cedar-policy = { version = "=4.3.0", path = "../cedar-policy" }
15-
cedar-policy-formatter = { version = "=4.3.0", path = "../cedar-policy-formatter" }
16-
cedar-policy-core = { version = "=4.3.0", path = "../cedar-policy-core" }
17-
cedar-policy-validator = { version = "=4.3.0", path = "../cedar-policy-validator" }
14+
cedar-policy = { version = "=4.3.1", path = "../cedar-policy" }
15+
cedar-policy-formatter = { version = "=4.3.1", path = "../cedar-policy-formatter" }
16+
cedar-policy-core = { version = "=4.3.1", path = "../cedar-policy-core" }
17+
cedar-policy-validator = { version = "=4.3.1", path = "../cedar-policy-validator" }
1818
clap = { version = "4", features = ["derive", "env"] }
1919
serde = { version = "1.0", features = ["derive"] }
2020
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.0", path = "../cedar-policy-core" }
14+
cedar-policy-core = { version = "=4.3.1", 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.0", path = "../cedar-policy-core" }
14+
cedar-policy-core = { version = "=4.3.1", 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"
@@ -58,7 +58,7 @@ entity-manifest = []
5858
[dev-dependencies]
5959
similar-asserts = "1.5.0"
6060
cool_asserts = "2.0"
61-
cedar-policy-core = { version = "=4.3.0", path = "../cedar-policy-core", features = ["test-util"] }
61+
cedar-policy-core = { version = "=4.3.1", path = "../cedar-policy-core", features = ["test-util"] }
6262
miette = { version = "7.4.0", features = ["fancy"] }
6363

6464
[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.0", path = "../cedar-policy-core" }
15-
cedar-policy-validator = { version = "=4.3.0", path = "../cedar-policy-validator" }
16-
cedar-policy-formatter = { version = "=4.3.0", path = "../cedar-policy-formatter" }
14+
cedar-policy-core = { version = "=4.3.1", path = "../cedar-policy-core" }
15+
cedar-policy-validator = { version = "=4.3.1", path = "../cedar-policy-validator" }
16+
cedar-policy-formatter = { version = "=4.3.1", path = "../cedar-policy-formatter" }
1717
ref-cast = "1.0"
1818
serde = { version = "1.0", features = ["derive", "rc"] }
1919
serde_json = "1.0"
@@ -67,7 +67,7 @@ miette = { version = "7.4.0", features = ["fancy"] }
6767
cool_asserts = "2.0"
6868
criterion = "0.5"
6969
globset = "0.4"
70-
cedar-policy-core = { version = "=4.3.0", features = [
70+
cedar-policy-core = { version = "=4.3.1", features = [
7171
"test-util",
7272
], path = "../cedar-policy-core" }
7373
# 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.0");
6290+
assert_eq!(get_sdk_version().to_string(), "4.3.1");
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.0", path = "../cedar-policy" }
10-
cedar-policy-core = { version = "=4.3.0", path = "../cedar-policy-core" }
11-
cedar-policy-validator = { version = "=4.3.0", path = "../cedar-policy-validator" }
9+
cedar-policy = { version = "=4.3.1", path = "../cedar-policy" }
10+
cedar-policy-core = { version = "=4.3.1", path = "../cedar-policy-core" }
11+
cedar-policy-validator = { version = "=4.3.1", 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.0", path = "../cedar-policy", features = ["wasm"] }
13-
cedar-policy-core = { version = "=4.3.0", path = "../cedar-policy-core", features = ["wasm"] }
14-
cedar-policy-formatter = { version = "=4.3.0", path = "../cedar-policy-formatter" }
15-
cedar-policy-validator = { version = "=4.3.0", path = "../cedar-policy-validator", features = ["wasm"] }
12+
cedar-policy = { version = "=4.3.1", path = "../cedar-policy", features = ["wasm"] }
13+
cedar-policy-core = { version = "=4.3.1", path = "../cedar-policy-core", features = ["wasm"] }
14+
cedar-policy-formatter = { version = "=4.3.1", path = "../cedar-policy-formatter" }
15+
cedar-policy-validator = { version = "=4.3.1", 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)