Skip to content

Commit 4184c6a

Browse files
Bump to 0.6.0 (#579)
1 parent 7aa454b commit 4184c6a

5 files changed

Lines changed: 16 additions & 6 deletions

File tree

.github/workflows/pr-build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,5 @@ jobs:
3535
if: ${{ matrix.lang == 'jvm' }}
3636
run: sbt test
3737
- name: Run Native Image Test Suites
38-
if: ${{ (matrix.lang == 'jvm') && (matrix.java == '21') }}
38+
if: ${{ (matrix.lang == 'jvm') && (matrix.java == '25') }}
3939
run: sjsonnet/test/graalvm/run_test_suites.py

.github/workflows/release-build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
- uses: actions/checkout@v6
6363
- uses: actions/setup-java@v5
6464
with:
65-
java-version: 21
65+
java-version: 25
6666
distribution: 'zulu'
6767
- name: Set up environment variables
6868
run: |
@@ -95,7 +95,7 @@ jobs:
9595
- uses: actions/checkout@v6
9696
- name: Set up environment variables
9797
run: |
98-
echo "VERSION=$(cat VERSION)" >> $GITHUB_ENV
98+
echo "VERSION=$(cat sjsonnet/version)" >> $GITHUB_ENV
9999
mkdir -p release
100100
- uses: actions/download-artifact@v7
101101
name: Download Artifacts

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,14 @@
1-
## 0.5.5 (Latest)
1+
## 0.6.0 (Latest)
2+
* From now on the Changelog is what's in the GitHub Releases page: https://github.com/databricks/sjsonnet/releases
3+
4+
## 0.5.10
5+
* Add flag re-introduce broken assertions evaluation logic, to help with migrations
6+
* 0.5.7 to 0.5.9 were broken releases with missing logic for the flag above
7+
8+
## 0.5.6
9+
* Re-enable handling of unicode strings in std.base64 by @stephenamar-db in https://github.com/databricks/sjsonnet/pull/493
10+
11+
## 0.5.5
212
* Fix multiple assertion related bugs (inheritance, binding of super in inherited assertions, and timing of evaluation) by @JoshRosen in https://github.com/databricks/sjsonnet/pull/468
313
* Fix detection of duplicate fields with dynamic field name expressions by @JoshRosen in https://github.com/databricks/sjsonnet/pull/470
414
* chore: Make std.setInter accepts str. by @He-Pin in https://github.com/databricks/sjsonnet/pull/472

build.mill

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ trait SjsonnetCrossModule extends CrossScalaModule with ScalafmtModule {
5656
def manifest = super
5757
.manifest()
5858
.add(
59-
"Enable-Native-Access" -> "net.jpountz.util.Native"
59+
"Enable-Native-Access" -> "ALL-UNNAMED"
6060
)
6161

6262
def generatedSources = Task {

sjsonnet/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.0.0-SNAPSHOT
1+
0.6.0

0 commit comments

Comments
 (0)