This is an automated email from the ASF dual-hosted git repository.
robbie pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/qpid-site.git
The following commit(s) were added to refs/heads/asf-site by this push:
new a8ae6d09c simplify command to prepare broker-j release to be more like
others, only needing to specify RELEASE= variable unless doing something odd
a8ae6d09c is described below
commit a8ae6d09cb92f8e712a82d178967d217a4c85845
Author: Robbie Gemmell <[email protected]>
AuthorDate: Wed Nov 23 10:35:34 2022 +0000
simplify command to prepare broker-j release to be more like others, only
needing to specify RELEASE= variable unless doing something odd
---
README.md | 4 ++--
python/generate.py | 3 +++
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/README.md b/README.md
index e8415fa04..d60dae0db 100644
--- a/README.md
+++ b/README.md
@@ -121,8 +121,8 @@ following commands.
# For new Qpid C++ releases
[qpid-site]$ make gen-cpp-release RELEASE=$VERSION
- # For new Qpid Java releases
- [qpid-site]$ make gen-java-release RELEASE=$VERSION
+ # For new Qpid Broker-J releases
+ [qpid-site]$ make gen-broker-j-release RELEASE=$VERSION
# For new Qpid JMS releases
[qpid-site]$ make gen-jms-release RELEASE=$VERSION
diff --git a/python/generate.py b/python/generate.py
index 2d7f6ce68..a806ba601 100644
--- a/python/generate.py
+++ b/python/generate.py
@@ -414,6 +414,9 @@ def _fetch_issues(project, release):
if project in ("qpid-cpp", "qpid-python"):
fix_version = "{}-{}".format(project, release)
+ if project in ("broker-j"):
+ fix_version = "qpid-java-broker-{}".format(release)
+
if project in ("qpid-cpp", "qpid-java", "qpid-python", "broker-j"):
project = "qpid"
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]