This is an automated email from the ASF dual-hosted git repository.
anshum pushed a commit to branch branch_9_7
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/branch_9_7 by this push:
new b33798da2fc Add next bugfix version 9.7.1
b33798da2fc is described below
commit b33798da2fc146cf97b583b3c233fdf5b991c55d
Author: Anshum Gupta <[email protected]>
AuthorDate: Fri Oct 25 10:12:25 2024 -0700
Add next bugfix version 9.7.1
---
build.gradle | 2 +-
solr/CHANGES.txt | 9 +++++++++
.../src/java/org/apache/solr/client/api/util/SolrVersion.java | 2 +-
3 files changed, 11 insertions(+), 2 deletions(-)
diff --git a/build.gradle b/build.gradle
index 910714b7736..dfc08f7d6bc 100644
--- a/build.gradle
+++ b/build.gradle
@@ -37,7 +37,7 @@ apply from: file('gradle/globals.gradle')
// Calculate project version:
version = {
// Release manager: update base version here after release:
- String baseVersion = '9.7.0'
+ String baseVersion = '9.7.1'
// On a release explicitly set release version in one go:
// -Dversion.release=x.y.z
diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index d143dd42db6..4433e61626f 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -4,6 +4,15 @@ This file lists Solr's raw release notes with details of every
change to Solr.
Most people will find the solr-upgrade-notes.adoc file more approachable.
https://github.com/apache/solr/blob/main/solr/solr-ref-guide/modules/upgrade-notes/pages/solr-upgrade-notes.adoc
+================== 9.7.1 ==================
+Bug Fixes
+---------------------
+(No changes)
+
+Dependency Upgrades
+---------------------
+(No changes)
+
================== 9.7.0 ==================
New Features
---------------------
diff --git a/solr/api/src/java/org/apache/solr/client/api/util/SolrVersion.java
b/solr/api/src/java/org/apache/solr/client/api/util/SolrVersion.java
index f6395c85975..5b135d00bbe 100644
--- a/solr/api/src/java/org/apache/solr/client/api/util/SolrVersion.java
+++ b/solr/api/src/java/org/apache/solr/client/api/util/SolrVersion.java
@@ -29,7 +29,7 @@ public final class SolrVersion implements
Comparable<SolrVersion> {
private final Semver version;
// This static variable should be bumped for each release
- public static final String LATEST_STRING = "9.7.0";
+ public static final String LATEST_STRING = "9.7.1";
/** This instance represents the current (latest) version of Solr. */
public static final SolrVersion LATEST = SolrVersion.valueOf(LATEST_STRING);