You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2016/06/27 20:33:39 UTC

[5/6] lucene-solr:branch_5x: releasedJirasRegex.py: fixed comment about the limitations of the script

releasedJirasRegex.py: fixed comment about the limitations of the script


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/9efad5a2
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/9efad5a2
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/9efad5a2

Branch: refs/heads/branch_5x
Commit: 9efad5a2c0e780eda89615736c4e08d699858c28
Parents: 4fd61c6
Author: Steve Rowe <sa...@apache.org>
Authored: Mon Jun 27 16:32:33 2016 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Mon Jun 27 16:33:12 2016 -0400

----------------------------------------------------------------------
 dev-tools/scripts/releasedJirasRegex.py | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/9efad5a2/dev-tools/scripts/releasedJirasRegex.py
----------------------------------------------------------------------
diff --git a/dev-tools/scripts/releasedJirasRegex.py b/dev-tools/scripts/releasedJirasRegex.py
index 3ed57a5..dc5e1b3 100644
--- a/dev-tools/scripts/releasedJirasRegex.py
+++ b/dev-tools/scripts/releasedJirasRegex.py
@@ -24,9 +24,10 @@ import re
 # under the given version in the given CHANGES.txt file
 # and prints a regular expression that will match all of them
 #
-# Caveat: only works with modern CHANGES releases that use bullets
-# ('*' or '-') - other list item mechanisms (numbers or letters)
-# are not handled properly.
+# Caveat: In ancient versions (Lucene v1.9 and older; Solr v1.1 and older),
+# does not find Bugzilla bugs or JIRAs not mentioned at the beginning of
+# bullets or numbered entries.
+#
 def print_released_jiras_regex(version, filename):
   release_boundary_re = re.compile(r'\s*====*\s+(.*)\s+===')
   version_re = re.compile(r'%s(?:$|[^-])' % version)