2013.12.19, Version 0.10.21 (Stable)

Changes since version 0.10.20:

* unix: fix a possible memory leak in uv_fs_readdir (Alex Crichton)
This commit is contained in:
Timothy J Fontaine 2013-12-18 15:37:25 -08:00
parent 7c6bddbe2a
commit 375ebce068
3 changed files with 9 additions and 1 deletions

View File

@ -89,3 +89,4 @@ Chris Bank <cbank@adobe.com>
Geert Jansen <geertj@gmail.com>
Alex Gaynor <alex.gaynor@gmail.com>
huxingyi <huxingyi@msn.com>
Alex Crichton <alex@alexcrichton.com>

View File

@ -1,3 +1,10 @@
2013.12.19, Version 0.10.21 (Stable)
Changes since version 0.10.20:
* unix: fix a possible memory leak in uv_fs_readdir (Alex Crichton)
2013.12.13, Version 0.10.20 (Stable), 04141464dd0fba90ace9aa6f7003ce139b888a40
Changes since version 0.10.19:

View File

@ -35,7 +35,7 @@
#define UV_VERSION_MAJOR 0
#define UV_VERSION_MINOR 10
#define UV_VERSION_PATCH 21
#define UV_VERSION_IS_RELEASE 0
#define UV_VERSION_IS_RELEASE 1
#define UV_VERSION ((UV_VERSION_MAJOR << 16) | \