-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
We now outline our lightweight release process to correctly bump the version numbers. Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
- Loading branch information
1 parent
bd1a2ea
commit 0b22b41
Showing
2 changed files
with
19 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Releasing a new version of oci-spec-rs | ||
|
||
A new release of this crate can be proposed by running the version bump script: | ||
|
||
```bash | ||
./hack/release x.y.z | ||
``` | ||
|
||
Push the changes to your fork and draft a new GitHub Pull Request (PR) which | ||
should now contain 2 commits, one which bumps the release version and another | ||
one to turn it _back to dev_. | ||
|
||
If the PR got merged, then create a new tag pointing to the first commit of that | ||
PR (named _Bump to x.y.z_). The changelog can be created by using GitHub's | ||
release note creation feature via the user interface. |