2015-04-14 io.js v1.7.1 Release v1.7.1
authorRod Vagg <rod@vagg.org>
Tue, 14 Apr 2015 12:57:23 +0000 (22:57 +1000)
committerRod Vagg <rod@vagg.org>
Tue, 14 Apr 2015 12:58:04 +0000 (22:58 +1000)
Notable changes:

* build: A syntax error in the Makefile for release builds caused
  1.7.0 to be DOA and unreleased. (Rod Vagg) #1421

CHANGELOG.md
src/node_version.h

index 85ba4a6..cb15492 100644 (file)
@@ -1,5 +1,15 @@
 # io.js ChangeLog
 
+## 2015-04-14, Version 1.7.1, @rvagg
+
+### Notable changes
+
+* **build**: A syntax error in the Makefile for release builds caused 1.7.0 to be DOA and unreleased. (Rod Vagg) [#1421](https://github.com/iojs/io.js/pull/1421).
+
+### Commits
+
+* [[`aee86a21f2`](https://github.com/iojs/io.js/commit/aee86a21f2)] - **build**: fix RELEASE check (Rod Vagg) [#1421](https://github.com/iojs/io.js/pull/1421)
+
 ## 2015-04-14, Version 1.7.0, @rvagg
 
 ### Notable changes
index 3bdb13b..7061f4e 100644 (file)
@@ -5,7 +5,7 @@
 #define NODE_MINOR_VERSION 7
 #define NODE_PATCH_VERSION 1
 
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
 
 #ifndef NODE_STRINGIFY
 #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)