This is an automated email from the ASF dual-hosted git repository.
janhoy pushed a commit to branch branch_9x
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/branch_9x by this push:
new e9a47a4 Add next minor version 9.1.0
e9a47a4 is described below
commit e9a47a4b9a1d41bb9c1991b1c1cae5170618dd51
Author: Jan Høydahl <[email protected]>
AuthorDate: Sun Jan 9 01:24:07 2022 +0100
Add next minor version 9.1.0
---
build.gradle | 2 +-
solr/CHANGES.txt | 24 ++++++++++++++++++++++
.../src/java/org/apache/solr/util/SolrVersion.java | 2 +-
3 files changed, 26 insertions(+), 2 deletions(-)
diff --git a/build.gradle b/build.gradle
index badb430..bb513fc 100644
--- a/build.gradle
+++ b/build.gradle
@@ -35,7 +35,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.1.0'
// 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 e2b826f..de37b13 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -4,6 +4,30 @@ 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/src/solr-upgrade-notes.adoc
+================== 9.1.0 ==================
+
+Docker and contrib modules have separate CHANGES.md files.
+
+New Features
+---------------------
+(No changes)
+
+Improvements
+---------------------
+(No changes)
+
+Optimizations
+---------------------
+(No changes)
+
+Bug Fixes
+---------------------
+(No changes)
+
+Other Changes
+---------------------
+(No changes)
+
================== 9.0.0 ==================
Docker and contrib modules have separate CHANGES.md files.
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 678a3d6..18b22f6 100644
--- a/solr/core/src/java/org/apache/solr/util/SolrVersion.java
+++ b/solr/core/src/java/org/apache/solr/util/SolrVersion.java
@@ -33,7 +33,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.1.0";
/**
* This instance represents the current (latest) version of Solr.