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

master
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)
Mark Cavage <mcavage@gmail.com> (https://github.com/mcavage)
Dave Pacheco <dap@joyent.com> (https://github.com/davepacheco)
Michael Hart (https://github.com/mhart)

View File

@ -1,8 +1,12 @@
# 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

View File

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

View File

@ -4,7 +4,7 @@
* 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.
// `0` is until I release a version '1.0.0' of node-bunyan. Thereafter,

View File

@ -1,7 +1,7 @@
{
"name": "bunyan",
"version": "0.9.1",
"description": "a JSON Logger library for node.js servers",
"version": "0.10.0",
"description": "a JSON Logger library for node.js services",
"author": "Trent Mick <trentm@gmail.com> (http://trentm.com)",
"main": "./lib/bunyan.js",
"bin": {
@ -14,7 +14,7 @@
},
"engines": ["node >=0.6.0"],
"keywords": ["log", "logging", "log4j", "json"],
"devDependencies": {
"tap": "0.2.0",
"ben": "0.0.0"