From d509d2ee7e271f205085a1f252ec6a8df4a95fb1 Mon Sep 17 00:00:00 2001 From: Robert Kenny Date: Tue, 7 Jan 2025 08:07:37 +0000 Subject: [PATCH 1/3] Setup sbt in release action --- .github/workflows/release.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 39018781..42fc067c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -126,11 +126,13 @@ jobs: mkdir ~/.sbt echo "${{ secrets.SONATYPE_CREDENTIALS }}" > ~/.sbt/sonatype.credentials - name: Setup JDK - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: temurin java-version: 17 cache: sbt + - name: Setup sbt + uses: sbt/setup-sbt@v1.1.0 - name: Publish to Sonatype run: | ARTIFACT_NAME="${{ matrix.service }}_2.12" From a5466331227dec41399b90c921cabba66bd6dbd6 Mon Sep 17 00:00:00 2001 From: Robert Kenny Date: Tue, 7 Jan 2025 08:14:12 +0000 Subject: [PATCH 2/3] add release doc --- RELEASE.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 RELEASE.md diff --git a/RELEASE.md b/RELEASE.md new file mode 100644 index 00000000..c351addc --- /dev/null +++ b/RELEASE.md @@ -0,0 +1,3 @@ +RELEASE_TYPE: patch + +This is a change to the build process to fix a bug in the way that the `sbt` build is run. From b5266c6a6c21b34a2fdd849ca585c879614a91b9 Mon Sep 17 00:00:00 2001 From: GitHub on behalf of Wellcome Collection Date: Tue, 7 Jan 2025 11:27:39 +0000 Subject: [PATCH 3/3] Release: Bump version to v32.43.4 [skip ci] --- CHANGELOG.md | 4 ++++ RELEASE.md | 3 --- build.sbt | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) delete mode 100644 RELEASE.md diff --git a/CHANGELOG.md b/CHANGELOG.md index f7da290e..972688a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # CHANGELOG +## v32.43.4 - 2025-01-07 + +This is a change to the build process to fix a bug in the way that the `sbt` build is run. + ## v32.43.3 - 2025-01-06 Update ElasticBuilder to generate and accept config case classes to enable diff --git a/RELEASE.md b/RELEASE.md deleted file mode 100644 index c351addc..00000000 --- a/RELEASE.md +++ /dev/null @@ -1,3 +0,0 @@ -RELEASE_TYPE: patch - -This is a change to the build process to fix a bug in the way that the `sbt` build is run. diff --git a/build.sbt b/build.sbt index d9663395..a7ff39dd 100644 --- a/build.sbt +++ b/build.sbt @@ -1,4 +1,4 @@ -val projectVersion = "32.43.3" +val projectVersion = "32.43.4" Global / excludeLintKeys += composeNoBuild