From 6fbbcbc44fd2a2fcea4701ffad3970442f056e6a Mon Sep 17 00:00:00 2001 From: Shivaram Lingamneni Date: Sun, 26 Jul 2020 06:00:24 -0400 Subject: [PATCH] set up v2.3.0-unreleased --- DEVELOPING.md | 2 +- irc/version.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DEVELOPING.md b/DEVELOPING.md index 357bc804..aaa89901 100644 --- a/DEVELOPING.md +++ b/DEVELOPING.md @@ -50,7 +50,7 @@ Develop branches are either used to work out implementation details in preperati Once it's built and released, you need to setup the new development version. To do so: 1. Ensure dependencies are up-to-date. -1. In `irc/constants.go`, update the version number to `0.0.1-unreleased`, where `0.0.1` is the previous release number with the minor field incremented by one (for instance, `0.9.2` -> `0.9.3-unreleased`). +1. Bump the version number in `irc/version.go`, typically by incrementing the second number in the 3-tuple, and add '-unreleased' (for instance, `2.2.0` -> `2.3.0-unreleased`). 1. Commit the new version number and changelog with the message `"Setup v0.0.1-unreleased devel ver"`. **Unreleased changelog content** diff --git a/irc/version.go b/irc/version.go index e5a7f011..151e627e 100644 --- a/irc/version.go +++ b/irc/version.go @@ -7,7 +7,7 @@ import "fmt" const ( // SemVer is the semantic version of Oragono. - SemVer = "2.2.0" + SemVer = "2.3.0-unreleased" ) var (