This is an automated email from the ASF dual-hosted git repository.
janhoy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git
The following commit(s) were added to refs/heads/main by this push:
new ef81651 Add next major version 10.0.0
ef81651 is described below
commit ef81651b14d38a37076ae5375b91c0dad918d4bc
Author: Jan Høydahl <[email protected]>
AuthorDate: Thu Jan 6 17:14:24 2022 +0100
Add next major version 10.0.0
---
build.gradle | 2 +-
solr/CHANGES.txt | 25 +++++++++++++++++++++-
.../src/java/org/apache/solr/util/SolrVersion.java | 2 +-
3 files changed, 26 insertions(+), 3 deletions(-)
diff --git a/build.gradle b/build.gradle
index 1847a4b..740f076 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 = '10.0.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 ec77fcc..0c4b8aa 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -4,9 +4,32 @@ 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
+================== 10.0.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 ==================
-Consult the lucene/CHANGES.txt file for additional, low level, changes in this
release.
Docker and contrib modules have separate CHANGES.md files.
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 678a3d6..fca5b11 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 = "10.0.0";
/**
* This instance represents the current (latest) version of Solr.