Skip to content

Commit 7c5bfb3

Browse files
Creates Release 4.8.x (#343)
Signed-off-by: Mudit Chaudhary <chmudit@amazon.com>
1 parent aa59780 commit 7c5bfb3

4 files changed

Lines changed: 9 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,5 +24,5 @@ jobs:
2424
needs: get-branch-name
2525
uses: ./.github/workflows/run_cedar_java_reusable.yml
2626
with:
27-
cedar_policy_ref: "refs/heads/main" # use the latest commit on main
27+
cedar_policy_ref: ${{ needs.get-branch-name.outputs.branch_name }} # use the same branch of cedar-policy
2828
cedar_java_ref: "${{ github.href }}" # use the current PR's commit

CedarJava/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Changelog
22

3-
## Unreleased
3+
## 4.8.0
4+
* Pinned to `cedar-policy 4.8.2`
45
* Added Schema conversion APIs [#325](https://github.com/cedar-policy/cedar-java/pull/325)
56
* Added Level Validation [#327](https://github.com/cedar-policy/cedar-java/pull/327)
67
* Added DateTime extension support [#328](https://github.com/cedar-policy/cedar-java/pull/328)

CedarJava/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ publishing {
285285
from components.java
286286
groupId = 'com.cedarpolicy'
287287
artifactId = 'cedar-java'
288-
version = '3.1.2'
288+
version = '4.8.0'
289289

290290
artifacts {
291291
jar

CedarJavaFFI/Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ description = "Java FFI for Cedar (from the cedar-policy crate)."
66
edition = "2021"
77

88

9-
version = "4.0.0"
9+
version = "4.8.0"
1010

1111
[dependencies]
1212
serde = { version = "1.0", features = ["derive", "rc"] }
@@ -31,11 +31,11 @@ jni = { version = "0.21.1", features = ["invocation"] }
3131
crate_type = ["cdylib"]
3232

3333
[dependencies.cedar-policy]
34-
version = "4.0.0"
34+
version = "4.8.2"
3535
git = "https://github.com/cedar-policy/cedar"
36-
branch = "main"
36+
branch = "release/4.8.x"
3737

3838
[dependencies.cedar-policy-formatter]
39-
version = "4.0.0"
39+
version = "4.8.2"
4040
git = "https://github.com/cedar-policy/cedar"
41-
branch = "main"
41+
branch = "release/4.8.x"

0 commit comments

Comments
 (0)