Skip to content

Commit

Permalink
sync version number in master with release
Browse files Browse the repository at this point in the history
Update RELEASING with notes on how to not screw this up again.
  • Loading branch information
evmar committed Apr 8, 2013
1 parent 76faa25 commit 9f1852f
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
13 changes: 7 additions & 6 deletions RELEASING
@@ -1,9 +1,10 @@
Notes to myself on all the steps to make for a Ninja release. Notes to myself on all the steps to make for a Ninja release.


1. git checkout release; git merge master 1. update src/version.cc with new version (with ".git")
2. fix version number in source (it will likely conflict in the above) 2. git checkout release; git merge master
3. fix version in doc/manual.asciidoc 3. fix version number in src/version.cc (it will likely conflict in the above)
4. rebuild manual, put in place on website 4. fix version in doc/manual.asciidoc
5. commit, tag, push 5. rebuild manual, put in place on website
6. construct release notes from prior notes 6. commit, tag, push
7. construct release notes from prior notes
credits: git shortlog -s --no-merges REV.. credits: git shortlog -s --no-merges REV..
2 changes: 1 addition & 1 deletion src/version.cc
Expand Up @@ -18,7 +18,7 @@


#include "util.h" #include "util.h"


const char* kNinjaVersion = "1.1.0.git"; const char* kNinjaVersion = "1.2.0.git";


void ParseVersion(const string& version, int* major, int* minor) { void ParseVersion(const string& version, int* major, int* minor) {
size_t end = version.find('.'); size_t end = version.find('.');
Expand Down

0 comments on commit 9f1852f

Please sign in to comment.