summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--doc/manual.asciidoc5
-rw-r--r--src/version.cc2
2 files changed, 4 insertions, 3 deletions
diff --git a/doc/manual.asciidoc b/doc/manual.asciidoc
index 2062a2a..a78bbf5 100644
--- a/doc/manual.asciidoc
+++ b/doc/manual.asciidoc
@@ -1,5 +1,6 @@
The Ninja build system
======================
+v1.11.0, Nov 2020
Introduction
@@ -1022,8 +1023,8 @@ source file of a compile command.
+
This is for expressing dependencies that don't show up on the
command line of the command; for example, for a rule that runs a
-script that reads a hardcoded file, the hardcoded file should
-be an implicit dependency, as changes to the file should cause
+script that reads a hardcoded file, the hardcoded file should
+be an implicit dependency, as changes to the file should cause
the output to rebuild, even though it doesn't show up in the arguments.
+
Note that dependencies as loaded through depfiles have slightly different
diff --git a/src/version.cc b/src/version.cc
index bdcbc53..34167b6 100644
--- a/src/version.cc
+++ b/src/version.cc
@@ -20,7 +20,7 @@
using namespace std;
-const char* kNinjaVersion = "1.11.0.git";
+const char* kNinjaVersion = "1.11.0";
void ParseVersion(const string& version, int* major, int* minor) {
size_t end = version.find('.');