Skip to content

Commit 04cd14b

Browse files
author
Jonathan Thurman
authored
Merge pull request #100 from newrelic/release/v0.2.2
Release v0.2.2
2 parents 27bf860 + 4190199 commit 04cd14b

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
## [Unreleased]
33

44

5+
<a name="v0.2.2"></a>
6+
## [v0.2.2] - 2020-03-04
7+
### Bug Fixes
8+
- **build:** Remove version.go generation from make release
9+
- **build:** Add docker login to release-push process
10+
11+
512
<a name="v0.2.1"></a>
613
## [v0.2.1] - 2020-03-03
714
### Bug Fixes
@@ -61,6 +68,7 @@
6168
- **profile:** Add listing of profiles to command
6269

6370

64-
[Unreleased]: https://github.com/newrelic/newrelic-client-go/compare/v0.2.1...HEAD
71+
[Unreleased]: https://github.com/newrelic/newrelic-client-go/compare/v0.2.2...HEAD
72+
[v0.2.2]: https://github.com/newrelic/newrelic-client-go/compare/v0.2.1...v0.2.2
6573
[v0.2.1]: https://github.com/newrelic/newrelic-client-go/compare/v0.2.0...v0.2.1
6674
[v0.2.0]: https://github.com/newrelic/newrelic-client-go/compare/v0.1.0...v0.2.0

tools/release.sh

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,7 @@ git checkout -b release/v${RELEASE_VERSION}
3232
# Auto-generate CHANGELOG updates
3333
git-chglog --next-tag v${RELEASE_VERSION} -o CHANGELOG.md
3434

35-
# Update version in version.go file
36-
echo -e "package version\n\n// Version of this library\nconst Version string = \"${RELEASE_VERSION}\"" > internal/version/version.go
37-
3835
# Commit CHANGELOG updates
39-
git add CHANGELOG.md internal/version/version.go
36+
git add CHANGELOG.md
4037
git commit -m "chore(changelog): Update CHANGELOG for v${RELEASE_VERSION}"
4138
git push origin release/v${RELEASE_VERSION}

0 commit comments

Comments
 (0)