rev to 0.10.0 and add changelog for mhart's gzip addition
This commit is contained in:
parent
98c5bb9173
commit
27a035fc6e
5 changed files with 12 additions and 7 deletions
1
AUTHORS
1
AUTHORS
|
@ -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)
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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');
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue