Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorisaacs <i@izs.me>2012-09-27 20:39:23 +0400
committerisaacs <i@izs.me>2012-09-27 20:39:23 +0400
commite1f39468fa580c1e4cb15fac621f87944ee625dc (patch)
treebaa61104cf2d5e0f99df1a6dc8b8ba4f0c754c05
parentb5db5fc9dc85ae0c6fa1ee9b51c634a161c07fdc (diff)
2012.09.27, Version 0.8.11 (Stable)v0.8.11
* fs: Fix stat() size reporting for large files (Ben Noordhuis)
-rw-r--r--ChangeLog5
-rw-r--r--src/node_version.h2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 6bb5a7a2433..f74e6673414 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2012.09.27, Version 0.8.11 (Stable)
+
+* fs: Fix stat() size reporting for large files (Ben Noordhuis)
+
+
2012.09.25, Version 0.8.10 (Stable)
* npm: Upgrade to 1.1.62
diff --git a/src/node_version.h b/src/node_version.h
index f262bb1f822..84867d7bbe1 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -25,7 +25,7 @@
#define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 8
#define NODE_PATCH_VERSION 11
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)