From 503f028031c28bf3eb6f1a5ef938f0b92871eaec Mon Sep 17 00:00:00 2001 From: Nathan Rajlich Date: Wed, 26 Sep 2012 13:38:05 -0700 Subject: [PATCH] v0.0.4 --- History.md | 16 ++++++++++++++++ package.json | 2 +- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/History.md b/History.md index adaba5f..5abab35 100644 --- a/History.md +++ b/History.md @@ -1,4 +1,20 @@ +0.0.4 / 2012-09-26 +================== + + - struct: correct the field alignment logic (TJ Fontaine) + - test: add failing test from #1 + - test: more stucts with arrays tests + - add support for "ref-array" types + - add `toObject()`, `toJSON()`, and `inspect()` functions to struct instances + - change `_pointer` to `buffer` + - don't allow types with size == 0 like 'void' + - test: add test case using "void *" as the type + - test: fix deprecation warning + - package: use the -C switch on node-gyp for the `npm test` command + - travis: test node v0.7 and node v0.8 + - adjust the custom `toString()` output + 0.0.3 / 2012-06-01 ================== diff --git a/package.json b/package.json index 3489a65..c1672b2 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "ref-struct" , "description": "Create ABI-compliant \"struct\" instances on top of Buffers" , "keywords": [ "struct", "ref", "abi", "c", "c++", "ffi" ] -, "version": "0.0.3" +, "version": "0.0.4" , "author": "Nathan Rajlich (http://tootallnate.net)" , "repository": { "type": "git", "url": "git://github.com/TooTallNate/ref-struct.git" } , "main": "./lib/struct.js"