mirror of https://github.com/nodejs/node.git
2013.07.09, Version 0.10.13 (Stable)
* uv: Upgrade to v0.10.12 * npm: Upgrade to 1.3.2 * windows: get proper errno (Ben Noordhuis) * tls: only wait for finish if we haven't seen it (Timothy J Fontaine) * http: Dump response when request is aborted (isaacs) * http: use an unref'd timer to fix delay in exit (Peter Rust) * zlib: level can be negative (Brian White) * zlib: allow zero values for level and strategy (Brian White) * buffer: add comment explaining buffer alignment (Ben Noordhuis) * string_bytes: properly detect 64bit (Timothy J Fontaine) * src: fix memory leak in UsingDomains() (Ben Noordhuis)
This commit is contained in:
parent
5b6464f461
commit
e32660a984
1
AUTHORS
1
AUTHORS
|
@ -455,3 +455,4 @@ Daniel G. Taylor <dan@programmer-art.org>
|
||||||
Kiyoshi Nomo <tokyoincidents.g@gmail.com>
|
Kiyoshi Nomo <tokyoincidents.g@gmail.com>
|
||||||
Veres Lajos <vlajos@gmail.com>
|
Veres Lajos <vlajos@gmail.com>
|
||||||
Yuan Chuan <yuanchuan23@gmail.com>
|
Yuan Chuan <yuanchuan23@gmail.com>
|
||||||
|
Peter Rust <peter@cornerstonenw.com>
|
||||||
|
|
25
ChangeLog
25
ChangeLog
|
@ -1,3 +1,28 @@
|
||||||
|
2013.07.09, Version 0.10.13 (Stable)
|
||||||
|
|
||||||
|
* uv: Upgrade to v0.10.12
|
||||||
|
|
||||||
|
* npm: Upgrade to 1.3.2
|
||||||
|
|
||||||
|
* windows: get proper errno (Ben Noordhuis)
|
||||||
|
|
||||||
|
* tls: only wait for finish if we haven't seen it (Timothy J Fontaine)
|
||||||
|
|
||||||
|
* http: Dump response when request is aborted (isaacs)
|
||||||
|
|
||||||
|
* http: use an unref'd timer to fix delay in exit (Peter Rust)
|
||||||
|
|
||||||
|
* zlib: level can be negative (Brian White)
|
||||||
|
|
||||||
|
* zlib: allow zero values for level and strategy (Brian White)
|
||||||
|
|
||||||
|
* buffer: add comment explaining buffer alignment (Ben Noordhuis)
|
||||||
|
|
||||||
|
* string_bytes: properly detect 64bit (Timothy J Fontaine)
|
||||||
|
|
||||||
|
* src: fix memory leak in UsingDomains() (Ben Noordhuis)
|
||||||
|
|
||||||
|
|
||||||
2013.06.18, Version 0.10.12 (Stable)
|
2013.06.18, Version 0.10.12 (Stable)
|
||||||
|
|
||||||
* npm: Upgrade to 1.2.32
|
* npm: Upgrade to 1.2.32
|
||||||
|
|
|
@ -26,7 +26,7 @@
|
||||||
#define NODE_MINOR_VERSION 10
|
#define NODE_MINOR_VERSION 10
|
||||||
#define NODE_PATCH_VERSION 13
|
#define NODE_PATCH_VERSION 13
|
||||||
|
|
||||||
#define NODE_VERSION_IS_RELEASE 0
|
#define NODE_VERSION_IS_RELEASE 1
|
||||||
|
|
||||||
#ifndef NODE_TAG
|
#ifndef NODE_TAG
|
||||||
# define NODE_TAG ""
|
# define NODE_TAG ""
|
||||||
|
|
Loading…
Reference in New Issue