You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ja...@apache.org on 2022/05/12 00:06:32 UTC

[solr] branch branch_9_0 updated: Add next bugfix version 9.0.1

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

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


The following commit(s) were added to refs/heads/branch_9_0 by this push:
     new 2c67c4c431a Add next bugfix version 9.0.1
2c67c4c431a is described below

commit 2c67c4c431a686eb606264e24e878ab1f047a1b3
Author: Jan Høydahl <ja...@users.noreply.github.com>
AuthorDate: Thu May 12 02:06:22 2022 +0200

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

diff --git a/build.gradle b/build.gradle
index d4b42372e1f..2e89cac62cc 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.0.0'
+  String baseVersion = '9.0.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 d327be78f7b..217b563bd6b 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -4,6 +4,11 @@ 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.0.1 ==================
+Bug Fixes
+---------------------
+(No changes)
+
 ==================  9.0.0 ==================
 
 New Features
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 d0bca084db1..e6334e0eb5d 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.0.0";
+  private static final String LATEST_STRING = "9.0.1";
 
   /** This instance represents the current (latest) version of Solr. */
   public static final SolrVersion LATEST = SolrVersion.valueOf(LATEST_STRING);