File tree Expand file tree Collapse file tree 9 files changed +21
-21
lines changed Expand file tree Collapse file tree 9 files changed +21
-21
lines changed Original file line number Diff line number Diff line change 43
43
- run : sudo apt-get install protobuf-compiler
44
44
- run : rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
45
45
- 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
47
47
working-directory : head
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ debug = "line-tables-only" # this adds more debug symbols/info to the binary th
23
23
[workspace .package ]
24
24
# 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)
25
25
rust-version = " 1.77"
26
- version = " 4.3.0 "
26
+ version = " 4.3.1 "
27
27
homepage = " https://cedarpolicy.com"
28
28
keywords = [" cedar" , " authorization" , " policy" , " security" ]
29
29
categories = [" compilers" , " config" ]
Original file line number Diff line number Diff line change @@ -11,10 +11,10 @@ homepage.workspace = true
11
11
repository.workspace = true
12
12
13
13
[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" }
18
18
clap = { version = " 4" , features = [" derive" , " env" ] }
19
19
serde = { version = " 1.0" , features = [" derive" ] }
20
20
serde_json = " 1.0"
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ homepage.workspace = true
11
11
repository.workspace = true
12
12
13
13
[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" }
15
15
pretty = " 0.12.1"
16
16
logos = " 0.15.0"
17
17
itertools = " 0.14"
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ homepage.workspace = true
11
11
repository.workspace = true
12
12
13
13
[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" }
15
15
serde = { version = " 1.0" , features = [" derive" ] }
16
16
serde_json = { version = " 1.0" , features = [" preserve_order" ] }
17
17
serde_with = " 3.12"
@@ -58,7 +58,7 @@ entity-manifest = []
58
58
[dev-dependencies ]
59
59
similar-asserts = " 1.5.0"
60
60
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" ] }
62
62
miette = { version = " 7.4.0" , features = [" fancy" ] }
63
63
64
64
[build-dependencies ]
Original file line number Diff line number Diff line change @@ -11,9 +11,9 @@ homepage.workspace = true
11
11
repository = " https://github.com/cedar-policy/cedar"
12
12
13
13
[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" }
17
17
ref-cast = " 1.0"
18
18
serde = { version = " 1.0" , features = [" derive" , " rc" ] }
19
19
serde_json = " 1.0"
@@ -67,7 +67,7 @@ miette = { version = "7.4.0", features = ["fancy"] }
67
67
cool_asserts = " 2.0"
68
68
criterion = " 0.5"
69
69
globset = " 0.4"
70
- cedar-policy-core = { version = " =4.3.0 " , features = [
70
+ cedar-policy-core = { version = " =4.3.1 " , features = [
71
71
" test-util" ,
72
72
], path = " ../cedar-policy-core" }
73
73
# NON-CRYPTOGRAPHIC random number generators
Original file line number Diff line number Diff line change @@ -6287,7 +6287,7 @@ mod version_tests {
6287
6287
6288
6288
#[ test]
6289
6289
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 " ) ;
6291
6291
}
6292
6292
6293
6293
#[ test]
Original file line number Diff line number Diff line change @@ -6,9 +6,9 @@ license.workspace = true
6
6
publish = false
7
7
8
8
[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" }
12
12
serde = { version = " 1.0" , features = [" derive" ] }
13
13
serde_json = " 1.0"
14
14
smol_str = { version = " 0.3" , features = [" serde" ] }
Original file line number Diff line number Diff line change @@ -9,10 +9,10 @@ license.workspace = true
9
9
exclude = [' /build' ]
10
10
11
11
[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" ] }
16
16
17
17
serde = { version = " 1.0" , features = [" derive" , " rc" ] }
18
18
serde-wasm-bindgen = " 0.6"
You can’t perform that action at this time.
0 commit comments