You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by js...@apache.org on 2023/05/01 15:23:07 UTC

[solr] branch branch_9_2 updated: Add next bugfix version 9.2.2

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

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


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

commit dbcf27b4e8c62b67dcdcee38b294c0840a122001
Author: Justin Sweeney <ju...@fullstory.com>
AuthorDate: Mon May 1 11:23:01 2023 -0400

    Add next bugfix version 9.2.2
---
 build.gradle                                             | 2 +-
 solr/CHANGES.txt                                         | 9 +++++++++
 solr/core/src/java/org/apache/solr/util/SolrVersion.java | 2 +-
 3 files changed, 11 insertions(+), 2 deletions(-)

diff --git a/build.gradle b/build.gradle
index dee81ee9690..27514ca9dd1 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.2.1'
+  String baseVersion = '9.2.2'
 
   // 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 40f8903f1de..a85c5394f66 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.2.2 ==================
+Bug Fixes
+---------------------
+(No changes)
+
+Dependency Upgrades
+---------------------
+(No changes)
+
 ==================  9.2.1 ==================
 Bug Fixes
 ---------------------
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 812e93daf22..0f045b021ee 100644
--- a/solr/core/src/java/org/apache/solr/util/SolrVersion.java
+++ b/solr/core/src/java/org/apache/solr/util/SolrVersion.java
@@ -30,7 +30,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.2.1";
+  public static final String LATEST_STRING = "9.2.2";
 
   /** This instance represents the current (latest) version of Solr. */
   public static final SolrVersion LATEST = SolrVersion.valueOf(LATEST_STRING);