From 37e0a25651fae16b0e137f333f3ed2c341d130ca Mon Sep 17 00:00:00 2001 From: Sander Blue Date: Tue, 31 Jan 2023 10:52:05 -0600 Subject: [PATCH] chore: v2.0.0 changelog (#24) --- CHANGELOG.md | 8 +++++++- scripts/release.sh | 4 ++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 785acdc..2fd3ab7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ + +## [v2.0.0] - 2023-01-31 + +## [v1] - 2020-05-21 ## [v1.0.0] - 2020-05-21 ### Bug Fixes @@ -42,7 +46,9 @@ ### Features - New Relic deployment marker action -[Unreleased]: https://github.com/newrelic/deployment-marker-action/compare/v1.0.0...HEAD +[Unreleased]: https://github.com/newrelic/deployment-marker-action/compare/v2.0.0...HEAD +[v2.0.0]: https://github.com/newrelic/deployment-marker-action/compare/v1...v2.0.0 +[v1]: https://github.com/newrelic/deployment-marker-action/compare/v1.0.0...v1 [v1.0.0]: https://github.com/newrelic/deployment-marker-action/compare/v0.2.0...v1.0.0 [v0.2.0]: https://github.com/newrelic/deployment-marker-action/compare/v0.1.2...v0.2.0 [v0.1.2]: https://github.com/newrelic/deployment-marker-action/compare/v0.1.1...v0.1.2 diff --git a/scripts/release.sh b/scripts/release.sh index 4147e7e..0d5180b 100755 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -4,9 +4,9 @@ COLOR_RED='\033[0;31m' COLOR_NONE='\033[0m' CURRENT_GIT_BRANCH=$(git rev-parse --abbrev-ref HEAD) -if [ $CURRENT_GIT_BRANCH != 'master' ]; then +if [ $CURRENT_GIT_BRANCH != 'main' ]; then printf "\n" - printf "${COLOR_RED} Error: The release.sh script must be run while on the master branch. \n ${COLOR_NONE}" + printf "${COLOR_RED} Error: The release.sh script must be run while on the main branch. \n ${COLOR_NONE}" printf "\n" exit 1