Skip to content

Commit

Permalink
chore: v2.0.0 changelog (#24)
Browse files Browse the repository at this point in the history
  • Loading branch information
sanderblue committed Jan 31, 2023
1 parent 7f9e51d commit 37e0a25
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
<a name="v2.0.0"></a>
## [v2.0.0] - 2023-01-31
<a name="v1"></a>
## [v1] - 2020-05-21
<a name="v1.0.0"></a>
## [v1.0.0] - 2020-05-21
### Bug Fixes
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 37e0a25

Please sign in to comment.