Skip to content

Commit 97f7939

Browse files
bump version to 3.4.1 in Cargo.toml (#1224)
Signed-off-by: Shaobo He <[email protected]>
1 parent 1056d8b commit 97f7939

File tree

7 files changed

+20
-20
lines changed

7 files changed

+20
-20
lines changed

cedar-policy-cli/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "cedar-policy-cli"
33
edition = "2021"
44
rust-version = "1.76.0" # minimum supported Rust version is currently 1.76.0 because `cedar-policy-core` requirement. Check with `cargo install cargo-msrv && cargo msrv --min 1.75.0`
55

6-
version = "3.4.0"
6+
version = "3.4.1"
77
license = "Apache-2.0"
88
categories = ["compilers", "config"]
99
description = "CLI interface for the Cedar Policy language."
@@ -12,8 +12,8 @@ homepage = "https://cedarpolicy.com"
1212
repository = "https://github.com/cedar-policy/cedar"
1313

1414
[dependencies]
15-
cedar-policy = { version = "=3.4.0", path = "../cedar-policy" }
16-
cedar-policy-formatter = { version = "=3.4.0", path = "../cedar-policy-formatter" }
15+
cedar-policy = { version = "=3.4.1", path = "../cedar-policy" }
16+
cedar-policy-formatter = { version = "=3.4.1", path = "../cedar-policy-formatter" }
1717
clap = { version = "4", features = ["derive", "env"] }
1818
serde = { version = "1.0", features = ["derive"] }
1919
serde_json = "1.0"

cedar-policy-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ edition = "2021"
44
rust-version = "1.76.0" # minimum supported Rust version is currently 1.76.0 because of use of `Arc::unwrap_or_clone()`. Check with `cargo install cargo-msrv && cargo msrv --min 1.75.0`
55
build = "build.rs"
66

7-
version = "3.4.0"
7+
version = "3.4.1"
88
license = "Apache-2.0"
99
categories = ["compilers", "config"]
1010
description = "Core implemenation of the Cedar Policy language."

cedar-policy-formatter/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cedar-policy-formatter"
3-
version = "3.4.0"
3+
version = "3.4.1"
44
edition = "2021"
55
rust-version = "1.76.0" # minimum supported Rust version is currently 1.76.0 because `cedar-policy-core` requirement. Check with `cargo install cargo-msrv && cargo msrv --min 1.75.0`
66
license = "Apache-2.0"
@@ -11,7 +11,7 @@ homepage = "https://cedarpolicy.com"
1111
repository = "https://github.com/cedar-policy/cedar"
1212

1313
[dependencies]
14-
cedar-policy-core = { version = "=3.4.0", path = "../cedar-policy-core" }
14+
cedar-policy-core = { version = "=3.4.1", path = "../cedar-policy-core" }
1515
pretty = "0.12.1"
1616
logos = "0.14.0"
1717
itertools = "0.12"

cedar-policy-validator/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "cedar-policy-validator"
33
edition = "2021"
44
rust-version = "1.76.0" # minimum supported Rust version is currently 1.76.0 because `cedar-policy-core` requirement. Check with `cargo install cargo-msrv && cargo msrv --min 1.75.0`
55

6-
version = "3.4.0"
6+
version = "3.4.1"
77
license = "Apache-2.0"
88
categories = ["compilers", "config"]
99
description = "Validator for the Cedar Policy language."
@@ -12,7 +12,7 @@ homepage = "https://cedarpolicy.com"
1212
repository = "https://github.com/cedar-policy/cedar"
1313

1414
[dependencies]
15-
cedar-policy-core = { version = "=3.4.0", path = "../cedar-policy-core" }
15+
cedar-policy-core = { version = "=3.4.1", path = "../cedar-policy-core" }
1616
serde = { version = "1.0", features = ["derive"] }
1717
serde_json = { version = "1.0", features = ["preserve_order"] }
1818
serde_with = "3.0"
@@ -49,7 +49,7 @@ wasm = ["serde-wasm-bindgen", "tsify", "wasm-bindgen"]
4949

5050
[dev-dependencies]
5151
cool_asserts = "2.0"
52-
cedar-policy-core = { version = "=3.4.0", path = "../cedar-policy-core", features = [
52+
cedar-policy-core = { version = "=3.4.1", path = "../cedar-policy-core", features = [
5353
"test-util",
5454
] }
5555

cedar-policy/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "cedar-policy"
33
edition = "2021"
44
rust-version = "1.76.0" # minimum supported Rust version is currently 1.76.0 because `cedar-policy-core` requirement. Check with `cargo install cargo-msrv && cargo msrv --min 1.75.0`
55

6-
version = "3.4.0"
6+
version = "3.4.1"
77
license = "Apache-2.0"
88
categories = ["compilers", "config"]
99
description = "Cedar is a language for defining permissions as policies, which describe who should have access to what."
@@ -12,8 +12,8 @@ homepage = "https://cedarpolicy.com"
1212
repository = "https://github.com/cedar-policy/cedar"
1313

1414
[dependencies]
15-
cedar-policy-core = { version = "=3.4.0", features = ["test-util"], path = "../cedar-policy-core" }
16-
cedar-policy-validator = { version = "=3.4.0", path = "../cedar-policy-validator" }
15+
cedar-policy-core = { version = "=3.4.1", features = ["test-util"], path = "../cedar-policy-core" }
16+
cedar-policy-validator = { version = "=3.4.1", path = "../cedar-policy-validator" }
1717
ref-cast = "1.0"
1818
serde = { version = "1.0", features = ["derive", "rc"] }
1919
serde_json = "1.0"

cedar-testing/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ license = "Apache-2.0"
77
publish = false
88

99
[dependencies]
10-
cedar-policy = { version = "=3.4.0", path = "../cedar-policy" }
11-
cedar-policy-core = { version = "=3.4.0", path = "../cedar-policy-core" }
12-
cedar-policy-validator = { version = "=3.4.0", path = "../cedar-policy-validator" }
10+
cedar-policy = { version = "=3.4.1", path = "../cedar-policy" }
11+
cedar-policy-core = { version = "=3.4.1", path = "../cedar-policy-core" }
12+
cedar-policy-validator = { version = "=3.4.1", path = "../cedar-policy-validator" }
1313
serde = { version = "1.0", features = ["derive"] }
1414
serde_json = "1.0"
1515
smol_str = { version = "0.2", features = ["serde"] }

cedar-wasm/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cedar-wasm"
3-
version = "3.4.0"
3+
version = "3.4.1"
44
edition = "2021"
55
rust-version = "1.76.0" # minimum supported Rust version is currently 1.76.0 because `cedar-policy-core` requirement. Check with `cargo install cargo-msrv && cargo msrv --min 1.75.0`
66
description = "Wasm bindings and typescript types for Cedar lib"
@@ -9,14 +9,14 @@ license = "Apache-2.0"
99
exclude = ['/build']
1010

1111
[dependencies]
12-
cedar-policy = { version = "=3.4.0", path = "../cedar-policy", features = [
12+
cedar-policy = { version = "=3.4.1", path = "../cedar-policy", features = [
1313
"wasm",
1414
] }
15-
cedar-policy-core = { version = "=3.4.0", path = "../cedar-policy-core", features = [
15+
cedar-policy-core = { version = "=3.4.1", path = "../cedar-policy-core", features = [
1616
"wasm",
1717
] }
18-
cedar-policy-formatter = { version = "=3.4.0", path = "../cedar-policy-formatter" }
19-
cedar-policy-validator = { version = "=3.4.0", path = "../cedar-policy-validator", features = [
18+
cedar-policy-formatter = { version = "=3.4.1", path = "../cedar-policy-formatter" }
19+
cedar-policy-validator = { version = "=3.4.1", path = "../cedar-policy-validator", features = [
2020
"wasm",
2121
] }
2222

0 commit comments

Comments
 (0)