doc: add missed new features in CHANGELOG
authorShigeki Ohtsu <ohtsu@iij.ad.jp>
Wed, 14 Jan 2015 02:36:13 +0000 (11:36 +0900)
committerBert Belder <bertbelder@gmail.com>
Wed, 14 Jan 2015 02:45:35 +0000 (03:45 +0100)
Some new features were missed in Buffer and process.

PR: https://github.com/iojs/io.js/pull/359
Reviewed-by: Bert Belder <bertbelder@gmail.com>
CHANGELOG.md

index ee67887..bf21060 100644 (file)
@@ -31,6 +31,7 @@ https://iojs.org/api/buffer.html
 - Added `Buffer.compare()` which does a `memcmp()` on two Buffer instances. Instances themselves also have a `compare()`.
 - Added `buffer.equals()` that checks equality of Buffers by their contents.
 - `SlowBuffer`'s semantics were tweaked.
+- Added `buf.writeUIntLE`, `buf.writeUIntBE`, `buf.writeIntLE`, `buf.writeIntBE`, `buf.readUIntLE`, `buf.readUIntBE`, `buf.readIntLE` and `buf.readIntBE` that read and write value up to 6 bytes.
 
 ### child_process
 
@@ -125,6 +126,13 @@ https://iojs.org/api/path.html
 - Added `path.win32` and `path.posix` objects that contain platform-specific versions of the various `path` functions.
 - `path.join` is now faster.
 
+### process
+
+https://iojs.org/api/process.html
+
+- Added `process.mainModule` and `process.exitCode`.
+- Added `beforeExit` event.
+
 ### querystring
 
 https://iojs.org/api/querystring.html