Browse Source

update developing.md

tags/v2.0.0-rc1
Shivaram Lingamneni 4 years ago
parent
commit
6be11b9e83
1 changed files with 10 additions and 12 deletions
  1. 10
    12
      DEVELOPING.md

+ 10
- 12
DEVELOPING.md View File

@@ -23,22 +23,20 @@ Develop branches are either used to work out implementation details in preperati
23 23
 
24 24
 ## Releasing a new version
25 25
 
26
-1. Ensure dependencies are up-to-date.
27
-2. Run [`irctest`]() over it to make sure nothing's severely broken.
28
-3. Remove `-unreleased` from the version number in `irc/constants.go`.
29
-4. Update the changelog with new changes.
30
-5. Remove unused sections from the changelog, change the date/version number and write release notes.
31
-6. Commit the new changelog and constants change.
32
-7. Tag the release with `git tag v0.0.0 -m "Release v0.0.0"` (`0.0.0` replaced with the real ver number).
33
-8. Build binaries using `make release`, upload release to Github including the changelog and binaries.
34
-9. If it's a proper release (i.e. not an alpha/beta), merge the updates into the `stable` branch.
35
-10. Make the appropriate announcements (Twitter, oragono.io/news)
26
+1. Run [`irctest`]() over it to make sure nothing's severely broken.
27
+1. Update the changelog with new changes and write release notes.
28
+1. Update the version number `irc/constants.go` (either change `-unreleased` to `-rc1`, or remove `-rc1`, as appropriate).
29
+1. Commit the new changelog and constants change.
30
+1. Tag the release with `git tag v0.0.0 -m "Release v0.0.0"` (`0.0.0` replaced with the real ver number).
31
+1. Build binaries using `make release`, upload release to Github including the changelog and binaries.
32
+1. If it's a proper release (i.e. not an alpha/beta), merge the updates into the `stable` branch.
33
+1. Make the appropriate announcements (Twitter, oragono.io/news)
36 34
 
37 35
 Once it's built and released, you need to setup the new development version. To do so:
38 36
 
37
+1. Ensure dependencies are up-to-date.
39 38
 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`).
40
-2. At the top of the changelog, paste a new section with the content below.
41
-3. Commit the new version number and changelog with the message `"Setup v0.0.1-unreleased devel ver"`.
39
+1. Commit the new version number and changelog with the message `"Setup v0.0.1-unreleased devel ver"`.
42 40
 
43 41
 **Unreleased changelog content**
44 42
 

Loading…
Cancel
Save