-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from maxmind/pcronin/fix-release
Fix the release parameters
- Loading branch information
Showing
3 changed files
with
24 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
# CHANGELOG | ||
|
||
## 0.0.0 (2020-02-10) | ||
## 0.1.1 (2020-02-18) | ||
|
||
* Fix release config | ||
* Add release instructions | ||
|
||
## 0.1.0 (2020-02-18) | ||
|
||
* Initial beta release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Releasing | ||
|
||
* Install `goreleaser`. Refer to its docs. | ||
* Set a `GITHUB_TOKEN` environment variable. Refer to `goreleaser` docs for | ||
information. | ||
* Update `CHANGELOG.md`. | ||
* Mention recent changes. | ||
* Set a version if there is not one. | ||
* Set a release date. | ||
* Commit `CHANGELOG.md`. | ||
* Tag the release: `git tag -a v1.2.3 -m 'Tag v1.2.3'`. | ||
* Push the tag: `git push origin v1.2.3`. | ||
* Run `goreleaser`. |