diff --git a/RELEASES.md b/RELEASES.md index 96a640b8..f7ebba38 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -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` diff --git a/specs-go/version.go b/specs-go/version.go index ed137915..a44ac8da 100644 --- a/specs-go/version.go +++ b/specs-go/version.go @@ -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.