Skip to content

Commit

Permalink
Merge pull request #417 from sudo-bmitch/pr-release-dev-suffix
Browse files Browse the repository at this point in the history
releases: use +dev as in-development suffix
  • Loading branch information
mikebrow authored May 25, 2023
2 parents 7fcdf80 + 7d2d9ff commit 58a1fe9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion RELEASES.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Releases usually follow a few steps:
* [ ] merge multi-commit PRs (so each line has a `(#num)` suffix)
* [ ] drop hash and indent, `:'<,'> s/^\w* /^I* /`
* [ ] a commit bumping `./specs-go/version.go` to next version and empty the `VersionDev` variable
* [ ] a commit adding back the "-dev" to `VersionDev`
* [ ] a commit adding back the "+dev" to `VersionDev`
* [ ] send email to dev@opencontainers.org
* [ ] copy the exact commit hash for bumping the version from the pull-request (since master always stays as "-dev")
* [ ] count the PRs since last release (that this version is tracking, in the cases of multiple branching), like `git log --pretty=oneline --no-merges --decorate $priorTag..$versionBumpCommit | grep \(pr\/ | wc -l`
Expand Down
2 changes: 1 addition & 1 deletion specs-go/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const (
VersionPatch = 0

// VersionDev indicates development branch. Releases will be empty string.
VersionDev = "-rc.2-dev"
VersionDev = "-rc.2+dev"
)

// Version is the specification version that the package types support.
Expand Down

0 comments on commit 58a1fe9

Please sign in to comment.