Skip to content

Commit

Permalink
v1.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nico committed Apr 28, 2016
2 parents a60702e + 644f6b1 commit b49b0fc
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion RELEASING
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Make announcement on mailing list:
Update website:
1. Make sure your ninja checkout is on the v1.5.0 tag
2. Clone https://github.com/ninja-build/ninja-build.github.io
3. In that repo, `cd ninja && ./update-docs.sh`
3. In that repo, `./update-docs.sh`
4. Update index.html with newest version and link to release notes
5. git commit -m 'run update-docs.sh, 1.5.0 release'
6. git push origin master
4 changes: 2 additions & 2 deletions doc/manual.asciidoc
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The Ninja build system
======================
v1.7.0, Apr 2016
v1.7.1, Apr 2016


Introduction
Expand Down Expand Up @@ -209,7 +209,7 @@ specified by `-j` or its default)
`%e`:: Elapsed time in seconds. _(Available since Ninja 1.2.)_
`%%`:: A plain `%` character.
The default progress status is `"[%s/%t] "` (note the trailing space
The default progress status is `"[%f/%t] "` (note the trailing space
to separate from the build rule). Another example of possible progress status
could be `"[%u/%r/%f] "`.
Expand Down
4 changes: 2 additions & 2 deletions src/build.cc
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ BuildStatus::BuildStatus(const BuildConfig& config)

progress_status_format_ = getenv("NINJA_STATUS");
if (!progress_status_format_)
progress_status_format_ = "[%s/%t] ";
progress_status_format_ = "[%f/%t] ";
}

void BuildStatus::PlanHasTotalEdges(int total) {
Expand Down Expand Up @@ -222,7 +222,7 @@ string BuildStatus::FormatProgressStatus(

// Percentage
case 'p':
percent = (100 * started_edges_) / total_edges_;
percent = (100 * finished_edges_) / total_edges_;
snprintf(buf, sizeof(buf), "%3i%%", percent);
out += buf;
break;
Expand Down
2 changes: 1 addition & 1 deletion src/version.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#include "util.h"

const char* kNinjaVersion = "1.7.0";
const char* kNinjaVersion = "1.7.1";

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

0 comments on commit b49b0fc

Please sign in to comment.