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

(solr) branch branch_9_4 updated: Add next bugfix version 9.4.2

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

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


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

commit ba5a79afcdac73e87dfa28ea9eeeb7c5951c479e
Author: David Smiley <ds...@apache.org>
AuthorDate: Thu Jan 18 17:28:37 2024 -0500

    Add next bugfix version 9.4.2
---
 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 d21f161b183..ed2685a3686 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.4.1'
+  String baseVersion = '9.4.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 d309e05d9e7..82d525dd488 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -5,6 +5,15 @@ 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.4.2 ==================
+Bug Fixes
+---------------------
+(No changes)
+
+Dependency Upgrades
+---------------------
+(No changes)
+
 ==================  9.4.1 ==================
 Bug Fixes
 ---------------------
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 f2fc171cbab..98c93f7029f 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.4.1";
+  public static final String LATEST_STRING = "9.4.2";
 
   /** This instance represents the current (latest) version of Solr. */
   public static final SolrVersion LATEST = SolrVersion.valueOf(LATEST_STRING);