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 2021/12/16 11:31:51 UTC

[solr] branch main updated: SOLR-15852: Don't attempt to modify lucene CHANGES

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 f75bad1  SOLR-15852: Don't attempt to modify lucene CHANGES
f75bad1 is described below

commit f75bad124d5961af2a05ed7404b26a33d616a987
Author: Jan Høydahl <ja...@cominvent.com>
AuthorDate: Thu Dec 16 12:30:56 2021 +0100

    SOLR-15852: Don't attempt to modify lucene CHANGES
---
 dev-tools/scripts/addVersion.py | 2 --
 1 file changed, 2 deletions(-)

diff --git a/dev-tools/scripts/addVersion.py b/dev-tools/scripts/addVersion.py
index 4c9a6d5..c7fa816 100755
--- a/dev-tools/scripts/addVersion.py
+++ b/dev-tools/scripts/addVersion.py
@@ -202,8 +202,6 @@ def main():
 
   print('\nAdding new version %s' % newconf.version)
   # See LUCENE-8883 for some thoughts on which categories to use
-  update_changes('lucene/CHANGES.txt', newconf.version, '\n',
-                 ['Bug Fixes'] if is_bugfix else ['API Changes', 'New Features', 'Improvements', 'Optimizations', 'Bug Fixes', 'Other'])
   update_changes('solr/CHANGES.txt', newconf.version, get_solr_init_changes(),
                  ['Bug Fixes'] if is_bugfix else ['New Features', 'Improvements', 'Optimizations', 'Bug Fixes', 'Other Changes'])