diff --git a/AUTHORS b/AUTHORS
index c5a9261d21..0cddc38b4a 100644
--- a/AUTHORS
+++ b/AUTHORS
@@ -151,3 +151,5 @@ Devin Torres
Theo Schlossnagle
Kai Chen
Daniel C <333222@gmail.com>
+Mihai Călin Bazon
+
diff --git a/ChangeLog b/ChangeLog
index d204ce6dea..0d8dfa23d1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,20 @@
-2011.01.02, Version 0.3.3 (unstable)
+2011.01.08, Version 0.3.4 (unstable)
+
+* Primordal mingw build (Bert Belder)
+
+* HTTPS server
+
+* Built in debugger 'node debug script.js'
+
+* realpath files during module load (Mihai Călin Bazon)
+
+* Rename net.Stream to net.Socket (existing name will continue to be
+ supported)
+
+* Fix process.platform
+
+
+2011.01.02, Version 0.3.3 (unstable), 57544ba1c54c7d0da890317deeb73076350c5647
* TLS improvements.
diff --git a/doc/index.html b/doc/index.html
index a2eb949d27..4734d620c0 100644
--- a/doc/index.html
+++ b/doc/index.html
@@ -23,7 +23,7 @@
About
Links
Contributing
- v0.3.3 docs
+ v0.3.4 docs
v0.2.6 docs
@@ -92,9 +92,9 @@ net.createServer(function (socket) {
- Unstable: 2011.01.02
- node-v0.3.3.tar.gz
- (Documentation)
+ Unstable: 2011.01.08
+ node-v0.3.4.tar.gz
+ (Documentation)
Historical: versions, docs
diff --git a/src/node_version.h b/src/node_version.h
index 70bd4be74b..b59732ba96 100644
--- a/src/node_version.h
+++ b/src/node_version.h
@@ -7,7 +7,7 @@
#define NODE_MAJOR_VERSION 0
#define NODE_MINOR_VERSION 3
#define NODE_PATCH_VERSION 4
-#define NODE_VERSION_IS_RELEASE 0
+#define NODE_VERSION_IS_RELEASE 1
#ifndef NODE_STRINGIFY
#define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n)