rev to 0.10.0 and add changelog for mhart's gzip addition

This commit is contained in:
Trent Mick 2012-06-21 22:49:04 -07:00
parent 98c5bb9173
commit 27a035fc6e
5 changed files with 12 additions and 7 deletions

View file

@ -1,3 +1,4 @@
Trent Mick <trentm@gmail.com> (http://trentm.com) Trent Mick <trentm@gmail.com> (http://trentm.com)
Mark Cavage <mcavage@gmail.com> (https://github.com/mcavage) Mark Cavage <mcavage@gmail.com> (https://github.com/mcavage)
Dave Pacheco <dap@joyent.com> (https://github.com/davepacheco) Dave Pacheco <dap@joyent.com> (https://github.com/davepacheco)
Michael Hart (https://github.com/mhart)

View file

@ -1,8 +1,12 @@
# bunyan Changelog # bunyan Changelog
## bunyan 0.9.1 (not yet released) ## bunyan 0.10.0 (not yet released)
(nothing yet) - [pull #24] Support for gzip'ed log files in the bunyan CLI (by
github.com/mhart):
$ bunyan foo.log.gz
...
## bunyan 0.9.0 ## bunyan 0.9.0

View file

@ -5,7 +5,7 @@
// See <https://github.com/trentm/node-bunyan>. // See <https://github.com/trentm/node-bunyan>.
// //
var VERSION = "0.9.1"; var VERSION = "0.10.0";
var util = require('util'); var util = require('util');
var pathlib = require('path'); var pathlib = require('path');

View file

@ -4,7 +4,7 @@
* The bunyan logging library for node.js. * The bunyan logging library for node.js.
*/ */
var VERSION = '0.9.1'; var VERSION = '0.10.0';
// Bunyan log format version. This becomes the 'v' field on all log records. // Bunyan log format version. This becomes the 'v' field on all log records.
// `0` is until I release a version '1.0.0' of node-bunyan. Thereafter, // `0` is until I release a version '1.0.0' of node-bunyan. Thereafter,

View file

@ -1,7 +1,7 @@
{ {
"name": "bunyan", "name": "bunyan",
"version": "0.9.1", "version": "0.10.0",
"description": "a JSON Logger library for node.js servers", "description": "a JSON Logger library for node.js services",
"author": "Trent Mick <trentm@gmail.com> (http://trentm.com)", "author": "Trent Mick <trentm@gmail.com> (http://trentm.com)",
"main": "./lib/bunyan.js", "main": "./lib/bunyan.js",
"bin": { "bin": {