You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ma...@apache.org on 2023/01/14 02:47:22 UTC

[solr] branch branch_9_1 updated: Add next bugfix version 9.1.1

This is an automated email from the ASF dual-hosted git repository.

magibney pushed a commit to branch branch_9_1
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/branch_9_1 by this push:
     new cfd3eaede70 Add next bugfix version 9.1.1
cfd3eaede70 is described below

commit cfd3eaede7054e08385df43d5ccd6462ee1b3539
Author: Michael Gibney <mi...@fullstory.com>
AuthorDate: Fri Jan 13 21:44:10 2023 -0500

    Add next bugfix version 9.1.1
    
    (outstanding task from 9.1.0 release)
---
 build.gradle                                             | 2 +-
 solr/core/src/java/org/apache/solr/util/SolrVersion.java | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/build.gradle b/build.gradle
index f61033a6d2f..dc06abe1214 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.1.0'
+  String baseVersion = '9.1.1'
 
   // On a release explicitly set release version in one go:
   //  -Dversion.release=x.y.z
diff --git a/solr/core/src/java/org/apache/solr/util/SolrVersion.java b/solr/core/src/java/org/apache/solr/util/SolrVersion.java
index 7efde20935f..40a5c45dcc0 100644
--- a/solr/core/src/java/org/apache/solr/util/SolrVersion.java
+++ b/solr/core/src/java/org/apache/solr/util/SolrVersion.java
@@ -32,7 +32,7 @@ public final class SolrVersion implements Comparable<SolrVersion> {
   private final Version version;
 
   // This static variable should be bumped for each release
-  private static final String LATEST_STRING = "9.1.0";
+  private static final String LATEST_STRING = "9.1.1";
 
   /** This instance represents the current (latest) version of Solr. */
   public static final SolrVersion LATEST = SolrVersion.valueOf(LATEST_STRING);