Skip to content

Commit

Permalink
version 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
evmar committed May 17, 2013
2 parents 32d45f1 + 4b6087d commit 7a26848
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
2 changes: 1 addition & 1 deletion RELEASING
Expand Up @@ -5,6 +5,6 @@ Notes to myself on all the steps to make for a Ninja release.
3. fix version number in src/version.cc (it will likely conflict in the above)
4. fix version in doc/manual.asciidoc
5. rebuild manual, put in place on website
6. commit, tag, push
6. commit, tag, push (don't forget to push --tags)
7. construct release notes from prior notes
credits: git shortlog -s --no-merges REV..
3 changes: 3 additions & 0 deletions configure.py
Expand Up @@ -65,6 +65,9 @@
n.comment('It is generated by ' + os.path.basename(__file__) + '.')
n.newline()

n.variable('ninja_required_version', '1.3')
n.newline()

n.comment('The arguments passed to configure.py, for rerunning it.')
n.variable('configure_args', ' '.join(sys.argv[1:]))
env_keys = set(['CXX', 'AR', 'CFLAGS', 'LDFLAGS'])
Expand Down
3 changes: 2 additions & 1 deletion src/deps_log_test.cc
Expand Up @@ -340,7 +340,8 @@ TEST_F(DepsLogTest, TruncatedRecovery) {
// Shorten the file, corrupting the last record.
struct stat st;
ASSERT_EQ(0, stat(kTestFilename, &st));
ASSERT_EQ(0, truncate(kTestFilename, st.st_size - 2));
string err;
ASSERT_TRUE(Truncate(kTestFilename, st.st_size - 2, &err));

// Load the file again, add an entry.
{
Expand Down
2 changes: 1 addition & 1 deletion src/version.cc
Expand Up @@ -18,7 +18,7 @@

#include "util.h"

const char* kNinjaVersion = "1.3.0";
const char* kNinjaVersion = "1.3.1";

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

0 comments on commit 7a26848

Please sign in to comment.