Skip to content
This repository was archived by the owner on May 13, 2020. It is now read-only.

Update changelog-tool usage to match new 0.3.0 interface #121

Merged
merged 1 commit into from
Aug 4, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion RELEASE_PROCESS.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This document is aimed at members of the Pony team who might be cutting a releas
In order to do a release, you absolutely must have:

* Commit access to the `pony-stable` repo
* The latest release of the [changelog tool](https://github.com/ponylang/changelog-tool/releases) installed
* Version 0.3.x or later of the [changelog tool](https://github.com/ponylang/changelog-tool/releases) installed
* Access to the ponylang twitter account
* An account on reddit for posting release notes
* An account on the [Pony Zulip](https://ponylang.zulipchat.com)
Expand Down
4 changes: 2 additions & 2 deletions release.bash
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ git checkout -b "release-$version" "$commit"

# update VERSION and CHANGELOG
update_version
changelog-tool release CHANGELOG.md "$version" -e
changelog-tool release "$version" -e

# commit VERSION and CHANGELOG updates
git add CHANGELOG.md VERSION
Expand All @@ -81,7 +81,7 @@ git push origin "$version"
# update CHANGELOG for new entries
git checkout master
git merge "release-$version"
changelog-tool unreleased CHANGELOG.md -e
changelog-tool unreleased -e

# check if user wants to continue
check_for_commit_and_push
Expand Down