Browse Source

set up v2.3.0-unreleased

tags/v2.3.0-rc1
Shivaram Lingamneni 3 years ago
parent
commit
6fbbcbc44f
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      DEVELOPING.md
  2. 1
    1
      irc/version.go

+ 1
- 1
DEVELOPING.md View File

@@ -50,7 +50,7 @@ Develop branches are either used to work out implementation details in preperati
50 50
 Once it's built and released, you need to setup the new development version. To do so:
51 51
 
52 52
 1. Ensure dependencies are up-to-date.
53
-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`).
53
+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`).
54 54
 1. Commit the new version number and changelog with the message `"Setup v0.0.1-unreleased devel ver"`.
55 55
 
56 56
 **Unreleased changelog content**

+ 1
- 1
irc/version.go View File

@@ -7,7 +7,7 @@ import "fmt"
7 7
 
8 8
 const (
9 9
 	// SemVer is the semantic version of Oragono.
10
-	SemVer = "2.2.0"
10
+	SemVer = "2.3.0-unreleased"
11 11
 )
12 12
 
13 13
 var (

Loading…
Cancel
Save