This is an automated email from the ASF dual-hosted git repository.
slfan1989 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/auron.git
The following commit(s) were added to refs/heads/master by this push:
new ea5876567 [AURON #2396] [RELEASE] Bump the development version to
9.0.0-SNAPSHOT (#2397)
ea5876567 is described below
commit ea58765679ec66cf8a99e4807ba4c1a51aa9c2bf
Author: slfan1989 <[email protected]>
AuthorDate: Sun Jul 19 15:39:03 2026 +0800
[AURON #2396] [RELEASE] Bump the development version to 9.0.0-SNAPSHOT
(#2397)
### Which issue does this PR close?
Closes #2396
### Rationale for this change
Apache Auron 8.0.0-incubating has been released. Continued development
on the `master` branch should use the next snapshot version instead of
retaining the released version.
The release build workflows also contain hard-coded Auron version
values. These values must remain consistent with the Maven project
version so that generated JAR names match the artifact paths expected by
GitHub Actions.
### What changes are included in this PR?
- Update `project.version` in the root `pom.xml` from
`8.0.0-incubating` to `9.0.0-SNAPSHOT`.
- Update `auronver` to `9.0.0-SNAPSHOT` in the AMD64 release workflow.
- Update the explicit Spark 4.0 and Spark 4.1 AMD64 matrix entries.
- Update `auronver` to `9.0.0-SNAPSHOT` in the ARM64 release workflow.
- Update `auronver` to `9.0.0-SNAPSHOT` in the macOS release workflow.
### Are there any user-facing changes?
No.
This change only updates the development version and CI artifact naming.
It does not introduce changes to runtime behavior or public APIs.
### How was this patch tested?
### Was this patch authored or co-authored using generative AI tooling?
- [ ] Yes
- [x] No
If yes, include: `Generated-by: <tool name and version>`
ASF guidance: https://www.apache.org/legal/generative-tooling.html
Signed-off-by: slfan1989 <[email protected]>
---
.github/workflows/build-amd64-releases.yml | 6 +++---
.github/workflows/build-arm-releases.yml | 2 +-
.github/workflows/build-macos-releases.yml | 3 +--
pom.xml | 2 +-
4 files changed, 6 insertions(+), 7 deletions(-)
diff --git a/.github/workflows/build-amd64-releases.yml
b/.github/workflows/build-amd64-releases.yml
index 8815306c2..9209a221a 100644
--- a/.github/workflows/build-amd64-releases.yml
+++ b/.github/workflows/build-amd64-releases.yml
@@ -40,7 +40,7 @@ jobs:
sparkver: [spark-3.0, spark-3.1, spark-3.2, spark-3.3, spark-3.4,
spark-3.5, spark-4.0, spark-4.1]
scalaver: [ 2.12, 2.13 ]
javaver: [ 8, 21 ]
- auronver: [8.0.0-incubating]
+ auronver: [9.0.0-SNAPSHOT]
runner: [ ubuntu-24.04 ]
exclude:
# Only build on scala-2.13 for spark-3.5+
@@ -85,13 +85,13 @@ jobs:
- sparkver: spark-4.0
scalaver: '2.13'
javaver: '21'
- auronver: 8.0.0-incubating
+ auronver: 9.0.0-SNAPSHOT
runner: ubuntu-24.04
image: rockylinux8
- sparkver: spark-4.1
scalaver: '2.13'
javaver: '21'
- auronver: 8.0.0-incubating
+ auronver: 9.0.0-SNAPSHOT
runner: ubuntu-24.04
image: rockylinux8
diff --git a/.github/workflows/build-arm-releases.yml
b/.github/workflows/build-arm-releases.yml
index 5fbcb5f06..3eed52fae 100644
--- a/.github/workflows/build-arm-releases.yml
+++ b/.github/workflows/build-arm-releases.yml
@@ -38,7 +38,7 @@ jobs:
strategy:
matrix:
sparkver: [spark-3.0, spark-3.1, spark-3.2, spark-3.3, spark-3.4,
spark-3.5, spark-4.0, spark-4.1]
- auronver: [8.0.0-incubating]
+ auronver: [9.0.0-SNAPSHOT]
scalaver: [2.12, 2.13]
javaver: [ 8, 21 ]
runner: [ ubuntu-24.04-arm ]
diff --git a/.github/workflows/build-macos-releases.yml
b/.github/workflows/build-macos-releases.yml
index c09cb3727..62a54379a 100644
--- a/.github/workflows/build-macos-releases.yml
+++ b/.github/workflows/build-macos-releases.yml
@@ -38,7 +38,7 @@ jobs:
strategy:
matrix:
sparkver: [spark-3.0, spark-3.1, spark-3.2, spark-3.3, spark-3.4,
spark-3.5, spark-4.0, spark-4.1]
- auronver: [8.0.0-incubating]
+ auronver: [9.0.0-SNAPSHOT]
scalaver: [2.12, 2.13]
javaver: [8, 21]
runner: [macos-15]
@@ -129,4 +129,3 @@ jobs:
name: auron-${{matrix.sparkver}}_${{ matrix.scalaver }}-${{
matrix.javaver }}-release-${{ env.osclassfier }}-${{ matrix.auronver }}-${{
matrix.runner }}-${{ steps.commit.outputs.short }}.jar
path: target/auron-${{matrix.sparkver}}_${{ matrix.scalaver
}}-release-${{ env.osclassfier }}-${{ matrix.auronver }}.jar
overwrite: true
-
diff --git a/pom.xml b/pom.xml
index a4f6da670..30f27a413 100644
--- a/pom.xml
+++ b/pom.xml
@@ -46,7 +46,7 @@
</modules>
<properties>
- <project.version>8.0.0-incubating</project.version>
+ <project.version>9.0.0-SNAPSHOT</project.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<arrowVersion>16.0.0</arrowVersion>
<bytebuddyVersion>1.14.11</bytebuddyVersion>