From 0cfa789cc530848725a8cb5595224e78ae7b9dd0 Mon Sep 17 00:00:00 2001
From: Ryan Dahl
Date: Wed, 3 Feb 2010 12:14:51 -0800
Subject: [PATCH] bump version
---
ChangeLog | 36 +++++++++++++++++++++++++++++++++++-
doc/api.txt | 2 +-
doc/index.html | 4 ++--
wscript | 2 +-
4 files changed, 39 insertions(+), 5 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index a0ca9338706976..46318dd4dc0cd9 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,38 @@
-2010.01.20, Version 0.1.26
+2010.02.03, Version 0.1.27
+
+ * Implemented __dirname (Felix Geisendörfer)
+
+ * Downcase process.ARGV, process.ENV, GLOBAL
+ (now process.argv, process.env, global)
+
+ * Bug Fix: Late promise promise callbacks firing
+ (Felix Geisendörfer, Jonas Pfenniger)
+
+ * Make assert.AssertionError instance of Error
+
+ * Removed inline require call for querystring
+ (self@cloudhead.net)
+
+ * Add support for MX, TXT, and SRV records in DNS module.
+ (Blaine Cook)
+
+ * Bugfix: HTTP client automatically reconnecting
+
+ * Adding OS X .dmg build scripts. (Standa Opichal)
+
+ * Bugfix: ObjectWrap memory leak
+
+ * Bugfix: Multipart handle Content-Type headers with charset
+ (Felix Geisendörfer)
+
+ * Upgrade http-parser to fix header overflow attack.
+
+ * Upgrade V8 to 2.1.0
+
+ * Various other bug fixes, performance improvements.
+
+
+2010.01.20, Version 0.1.26, da00413196e432247346d9e587f8c78ce5ceb087
* Bugfix, HTTP eof causing crash (Ben Williamson)
diff --git a/doc/api.txt b/doc/api.txt
index c746e070751a49..55f68a824d79a3 100644
--- a/doc/api.txt
+++ b/doc/api.txt
@@ -1,7 +1,7 @@
NODE(1)
=======
Ryan Dahl
-Version, 0.1.26, 2010.01.20
+Version, 0.1.27, 2010.02.03
== NAME
diff --git a/doc/index.html b/doc/index.html
index fe8800a18b6b00..de7efdd7e5a2bc 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -97,9 +97,9 @@ Download
git repo
- 2010.01.20
+ 2010.02.03
node-v0.1.26.tar.gz
+ href="http://s3.amazonaws.com/four.livejournal/20100203/node-v0.1.27.tar.gz">node-v0.1.27.tar.gz
Build
diff --git a/wscript b/wscript
index 8e2a79cf4ad120..92a6c199b98175 100644
--- a/wscript
+++ b/wscript
@@ -7,7 +7,7 @@ from os.path import join, dirname, abspath
from logging import fatal
cwd = os.getcwd()
-VERSION="0.1.26"
+VERSION="0.1.27"
APPNAME="node.js"
import js2c