This is an automated email from the ASF dual-hosted git repository. robbie pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/artemis-website.git
commit 1a38e656a0bc317163df5a4b182e5797fb879efb Author: Robbie Gemmell <[email protected]> AuthorDate: Fri Nov 28 16:27:21 2025 +0000 Tweak scripts for release additions to reference expected repo/path names --- scripts/release/add-artemis-console-release.sh | 6 +++--- scripts/release/add-artemis-release.sh | 14 +++++++------- scripts/release/create-artemis-console-release-file | 2 +- scripts/release/create-artemis-console-release-notes | 2 +- scripts/release/create-artemis-git-report.sh | 12 ++++++------ scripts/release/create-artemis-release-file | 2 +- scripts/release/create-artemis-release-notes | 4 ++-- scripts/release/update-artemis-docs.sh | 12 ++++++------ 8 files changed, 27 insertions(+), 27 deletions(-) diff --git a/scripts/release/add-artemis-console-release.sh b/scripts/release/add-artemis-console-release.sh index beaaa90..0f3f562 100755 --- a/scripts/release/add-artemis-console-release.sh +++ b/scripts/release/add-artemis-console-release.sh @@ -26,17 +26,17 @@ error () { echo "" echo "Usage: ./scripts/release/add-artemis-console-release.sh <new-release-version>" echo "" - echo "Must be run from within an activemq-website checkout root." + echo "Must be run from within an artemis-website checkout root." echo "" echo "Example:" - echo "cd <path.to>/activemq-website" + echo "cd <path.to>/artemis-website" echo "./scripts/release/add-artemis-console-release.sh 1.0.0" echo "" exit 64 } if [ ! -f serve.sh ] || [ ! -f _config.yml ]; then - error "This script has to be run from inside the root of an activemq-website checkout" + error "This script has to be run from inside the root of an artemis-website checkout" exit 1 fi WEBSITE_DIR="$( pwd )" diff --git a/scripts/release/add-artemis-release.sh b/scripts/release/add-artemis-release.sh index 7f50638..7c0423a 100755 --- a/scripts/release/add-artemis-release.sh +++ b/scripts/release/add-artemis-release.sh @@ -24,19 +24,19 @@ error () { echo "" echo "** ERROR: $@ **" echo "" - echo "Usage: ./scripts/release/add-artemis-release.sh <path.to/activemq-artemis> <previous-release-version> <new-release-version>" + echo "Usage: ./scripts/release/add-artemis-release.sh <path.to/artemis> <previous-release-version> <new-release-version>" echo "" - echo "Must be run from within an activemq-website checkout root." + echo "Must be run from within an artemis-website checkout root." echo "" echo "Example:" - echo "cd <path.to>/activemq-website" - echo "./scripts/release/add-artemis-release.sh ../release-work/activemq-artemis 2.30.0 2.31.0" + echo "cd <path.to>/artemis-website" + echo "./scripts/release/add-artemis-release.sh ../release-work/artemis 2.30.0 2.31.0" echo "" exit 64 } if [ ! -f serve.sh ] || [ ! -f _config.yml ]; then - error "This script has to be run from inside the root of an activemq-website checkout" + error "This script has to be run from inside the root of an artemis-website checkout" exit 1 fi WEBSITE_DIR="$( pwd )" @@ -51,12 +51,12 @@ PRIOR_VERSION="$2" NEW_VERSION="$3" if [ ! -d "$ARTEMIS_DIR" ] || [ ! -d "$ARTEMIS_DIR/artemis-server" ] || [ ! -f "$ARTEMIS_DIR/.asf.yaml" ]; then - error "ERROR: The provided activemq-artemis release process path does not point to an activemq-artemis checkout" + error "ERROR: The provided artemis release process path does not point to an artemis checkout" exit 1 fi if [ ! -d "$ARTEMIS_DIR/target" ] || [ ! -d "$ARTEMIS_DIR/target/checkout" ]; then - error "ERROR: The provided activemq-artemis release path does not contain the release process target checkout: $ARTEMIS_DIR/target/checkout" + error "ERROR: The provided artemis release path does not contain the release process target checkout: $ARTEMIS_DIR/target/checkout" exit 1 fi diff --git a/scripts/release/create-artemis-console-release-file b/scripts/release/create-artemis-console-release-file index 5ae7fc9..708e277 100755 --- a/scripts/release/create-artemis-console-release-file +++ b/scripts/release/create-artemis-console-release-file @@ -26,7 +26,7 @@ template = \ --- version: {version} release_date: {date_string} -title: ActiveMQ Artemis Console {version} +title: Artemis Console {version} shortDescription: Bug fix release. --- """ diff --git a/scripts/release/create-artemis-console-release-notes b/scripts/release/create-artemis-console-release-notes index b284f1a..69312c7 100755 --- a/scripts/release/create-artemis-console-release-notes +++ b/scripts/release/create-artemis-console-release-notes @@ -25,7 +25,7 @@ template = \ """ --- layout: default_md -title: ActiveMQ Artemis Console {version} Release Notes +title: Artemis Console {version} Release Notes title-class: page-title-artemis type: artemis --- diff --git a/scripts/release/create-artemis-git-report.sh b/scripts/release/create-artemis-git-report.sh index 3f55683..3c95a1d 100755 --- a/scripts/release/create-artemis-git-report.sh +++ b/scripts/release/create-artemis-git-report.sh @@ -24,19 +24,19 @@ error () { echo "" echo "** ERROR: $@ **" echo "" - echo "Usage: ./scripts/release/create-artemis-git-report.sh <path.to/activemq-artemis> <previous-release-version> <new-release-version>" + echo "Usage: ./scripts/release/create-artemis-git-report.sh <path.to/artemis> <previous-release-version> <new-release-version>" echo "" - echo "Must be run from within an activemq-website checkout root." + echo "Must be run from within an artemis-website checkout root." echo "" echo "Example:" - echo "cd <path.to>/activemq-website" - echo "./scripts/release/create-artemis-git-report.sh ../release-work/activemq-artemis 2.30.0 2.31.0" + echo "cd <path.to>/artemis-website" + echo "./scripts/release/create-artemis-git-report.sh ../release-work/artemis 2.30.0 2.31.0" echo "" exit 64 } if [ ! -f serve.sh ] || [ ! -f _config.yml ]; then - error "This script has to be run from inside the root of an activemq-website checkout" + error "This script has to be run from inside the root of an artemis-website checkout" exit 1 fi WEBSITE_DIR="$( pwd )" @@ -51,7 +51,7 @@ PRIOR_VERSION="$2" NEW_VERSION="$3" if [ ! -d "$ARTEMIS_DIR" ] || [ ! -d "$ARTEMIS_DIR/artemis-server" ] || [ ! -f "$ARTEMIS_DIR/.asf.yaml" ]; then - error "ERROR: The provided activemq-artemis checkout path does not point to an activemq-artemis checkout" + error "ERROR: The provided artemis checkout path does not point to an artemis checkout" exit 1 fi diff --git a/scripts/release/create-artemis-release-file b/scripts/release/create-artemis-release-file index 1ab37b8..969f956 100755 --- a/scripts/release/create-artemis-release-file +++ b/scripts/release/create-artemis-release-file @@ -26,7 +26,7 @@ template = \ --- version: {version} release_date: {date_string} -title: ActiveMQ Artemis {version} +title: Artemis {version} shortDescription: Bug fix release. # Docs subdir name for past-releases and previous-docs pages, 'latest' is always used on the main download page. docs_version: {version} diff --git a/scripts/release/create-artemis-release-notes b/scripts/release/create-artemis-release-notes index 0d5e19d..488cae0 100755 --- a/scripts/release/create-artemis-release-notes +++ b/scripts/release/create-artemis-release-notes @@ -25,13 +25,13 @@ template = \ """ --- layout: default_md -title: ActiveMQ Artemis {version} Release Notes +title: Artemis {version} Release Notes title-class: page-title-artemis type: artemis --- - [A list of commits](commit-report-{version}). - - Please see the ["Versions"](https://activemq.apache.org/components/artemis/documentation/latest/versions.html) chapter in the User Guide for upgrade instructions. + - Please see the ["Versions"](https://artemis.apache.org/components/artemis/documentation/latest/versions.html) chapter in the User Guide for upgrade instructions. **Note**: This release requires use of Java 17 or above. diff --git a/scripts/release/update-artemis-docs.sh b/scripts/release/update-artemis-docs.sh index 33d156c..8afce8f 100755 --- a/scripts/release/update-artemis-docs.sh +++ b/scripts/release/update-artemis-docs.sh @@ -24,13 +24,13 @@ error () { echo "" echo "** ERROR: $@ **" echo "" - echo "Usage: ./scripts/release/update-artemis-docs.sh <path.to/activemq-artemis> <previous-release-version> <new-release-version>" + echo "Usage: ./scripts/release/update-artemis-docs.sh <path.to/artemis> <previous-release-version> <new-release-version>" echo "" - echo "Must be run from within an activemq-website checkout root." + echo "Must be run from within an artemis-website checkout root." echo "" echo "Example:" - echo "cd <path.to>/activemq-website" - echo "./scripts/release/update-artemis-docs.sh ../release-work/activemq-artemis 2.30.0 2.31.0" + echo "cd <path.to>/artemis-website" + echo "./scripts/release/update-artemis-docs.sh ../release-work/artemis 2.30.0 2.31.0" echo "" exit 64 } @@ -51,12 +51,12 @@ PRIOR_VERSION="$2" NEW_VERSION="$3" if [ ! -d "$ARTEMIS_DIR" ] || [ ! -d "$ARTEMIS_DIR/artemis-server" ] || [ ! -f "$ARTEMIS_DIR/.asf.yaml" ]; then - error "ERROR: The provided activemq-artemis release process path does not point to an activemq-artemis checkout" + error "ERROR: The provided artemis release process path does not point to an artemis checkout" exit 1 fi if [ ! -d "$ARTEMIS_DIR/target" ] || [ ! -d "$ARTEMIS_DIR/target/checkout" ]; then - error "ERROR: The provided activemq-artemis release path does not contain the release process target checkout: $ARTEMIS_DIR/target/checkout" + error "ERROR: The provided artemis release path does not contain the release process target checkout: $ARTEMIS_DIR/target/checkout" exit 1 fi --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
