diff options
author | isaacs <i@izs.me> | 2013-04-11 09:39:16 -0700 |
---|---|---|
committer | isaacs <i@izs.me> | 2013-04-11 09:39:16 -0700 |
commit | 9712aa9f76073c30850b20a188b1ed12ffb74d17 (patch) | |
tree | efcc1cb2eee6ce0411170215f646eb000daf4dc8 /src/node_version.h | |
parent | 1ccae9cb1bde1045821a26b6c201d5eb6a17ad5f (diff) | |
download | node-new-9712aa9f76073c30850b20a188b1ed12ffb74d17.tar.gz |
2013.04.11, Version 0.10.4 (Stable)v0.10.4v0.10.4-release
* uv: Upgrade to 0.10.4
* npm: Upgrade to 1.2.18
* v8: Avoid excessive memory growth in JSON.parse (Fedor Indutny)
* child_process, cluster: fix O(n*m) scan of cmd string (Ben Noordhuis)
* net: fix socket.bytesWritten Buffers support (Fedor Indutny)
* buffer: fix offset checks (Łukasz Walukiewicz)
* stream: call write cb before finish event (isaacs)
* http: Support write(data, 'hex') (isaacs)
* crypto: dh secret should be left-padded (Fedor Indutny)
* process: expose NODE_MODULE_VERSION in process.versions (Rod Vagg)
* crypto: fix constructor call in crypto streams (Andreas Madsen)
* net: account for encoding in .byteLength (Fedor Indutny)
* net: fix buffer iteration in bytesWritten (Fedor Indutny)
* crypto: zero is not an error if writing 0 bytes (Fedor Indutny)
* tls: Re-enable check of CN-ID in cert verification (Tobias Müllerleile)
Diffstat (limited to 'src/node_version.h')
-rw-r--r-- | src/node_version.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/node_version.h b/src/node_version.h index 1b93de2bf1..94ff344b16 100644 --- a/src/node_version.h +++ b/src/node_version.h @@ -26,12 +26,12 @@ #define NODE_MINOR_VERSION 10 #define NODE_PATCH_VERSION 4 +#define NODE_VERSION_IS_RELEASE 1 + #ifndef NODE_TAG # define NODE_TAG "" #endif -#define NODE_VERSION_IS_RELEASE 0 - #ifndef NODE_STRINGIFY #define NODE_STRINGIFY(n) NODE_STRINGIFY_HELPER(n) #define NODE_STRINGIFY_HELPER(n) #n |