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

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


The following commit(s) were added to refs/heads/branch_10x by this push:
     new fdebe6ee37c Add next minor version 10.1.0
fdebe6ee37c is described below

commit fdebe6ee37c693b47d1ec56ada5f0f54d03143a6
Author: Anshum Gupta <[email protected]>
AuthorDate: Wed Oct 15 10:23:32 2025 -0700

    Add next minor version 10.1.0
---
 build.gradle                                       |  2 +-
 solr/CHANGES.txt                                   | 25 +++++++++++++++++
 .../apache/solr/client/api/util/SolrVersion.java   |  2 +-
 solr/solr-ref-guide/antora.yml                     | 32 +++++++++++-----------
 4 files changed, 43 insertions(+), 18 deletions(-)

diff --git a/build.gradle b/build.gradle
index f0697914755..27a363cc0b8 100644
--- a/build.gradle
+++ b/build.gradle
@@ -49,7 +49,7 @@ apply from: file('gradle/globals.gradle')
 // Calculate project version:
 version = {
   // Release manager: update base version here after release:
-  String baseVersion = '10.0.0'
+  String baseVersion = '10.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 4316e788575..56197aedfd0 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -4,6 +4,31 @@ 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
 
+==================  10.1.0 ==================
+New Features
+---------------------
+(No changes)
+
+Improvements
+---------------------
+(No changes)
+
+Optimizations
+---------------------
+(No changes)
+
+Bug Fixes
+---------------------
+(No changes)
+
+Dependency Upgrades
+---------------------
+(No changes)
+
+Other Changes
+---------------------
+(No changes)
+
 ==================  10.0.0 ==================
 
 New Features
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 112bd45876a..c6de30fccd5 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 = "10.0.0";
+  public static final String LATEST_STRING = "10.1.0";
 
   /** This instance represents the current (latest) version of Solr. */
   public static final SolrVersion LATEST = SolrVersion.valueOf(LATEST_STRING);
diff --git a/solr/solr-ref-guide/antora.yml b/solr/solr-ref-guide/antora.yml
index d612229ed36..c0de7648463 100644
--- a/solr/solr-ref-guide/antora.yml
+++ b/solr/solr-ref-guide/antora.yml
@@ -19,10 +19,10 @@
 # but there is usually no need besides more up-to-date nightly builds of the 
ref-guide.
 
 name: solr
-version: '10_0'
-display_version: '10.0-alpha'
+version: '10_1'
+display_version: '10.1-beta'
 # Marking a version as 'prerelease: false' is only needed for published 
branches (minor version branches, branch_x_y, that have had a release)
-prerelease: -alpha
+prerelease: -beta
 title: Solr Reference Guide
 nav:
 - modules/getting-started/getting-started-nav.adoc
@@ -31,6 +31,7 @@ nav:
 - modules/indexing-guide/indexing-nav.adoc
 - modules/query-guide/querying-nav.adoc
 - modules/upgrade-notes/upgrade-nav.adoc
+- modules/how-to-contribute/how-to-contribute-nav.adoc
 
 # The asciidoc attributes must be the last entry in this file
 asciidoc:
@@ -38,18 +39,17 @@ asciidoc:
     idseparator: '-'
     idprefix: ''
     # 'patch-version' is the 'z' part of x.y.z semantic version
-    page-solr-javadocs: 'https://solr.apache.org/docs/10_0_0'
-    solr-javadocs: 'https://solr.apache.org/docs/10_0_0'
-    lucene-javadocs: 'https://lucene.apache.org/core/9_4_2'
+    page-solr-javadocs: 'https://solr.apache.org/docs/10_1_0'
+    solr-javadocs: 'https://solr.apache.org/docs/10_1_0'
+    lucene-javadocs: 'https://lucene.apache.org/core/10_3_1'
     java-javadocs: 
https://docs.oracle.com/en/java/javase/11/docs/api/java.base/
-    solr-docs-version: '10.0'
-    solr-full-version: '10.0.0'
+    solr-docs-version: '10.1'
+    solr-full-version: '10.1.0'
 
-    dep-version-commons-codec: '1.15'
-    dep-version-dropwizard: '4.2.12'
-    dep-version-log4j: '2.19.0'
-    dep-version-opennlp: '2.5.4'
-    dep-version-tika: '1.28.4'
-    dep-version-zookeeper: '3.8.0'
-    dep-version-lucene: '9.4.2'
-    dep-version-opentelemetry: '1.21.0'
+    dep-version-commons-codec: '1.19.0'
+    dep-version-log4j: '2.21.0'
+    dep-version-opennlp: '2.5.6'
+    dep-version-tika: '1.28.5'
+    dep-version-zookeeper: '3.9.4'
+    dep-version-lucene: '10.3.1'
+    dep-version-opentelemetry: '1.53.0'

Reply via email to