diff --git a/AUTHORS b/AUTHORS index af1421b..308f3b6 100644 --- a/AUTHORS +++ b/AUTHORS @@ -1,3 +1,4 @@ Trent Mick (http://trentm.com) Mark Cavage (https://github.com/mcavage) Dave Pacheco (https://github.com/davepacheco) +Michael Hart (https://github.com/mhart) diff --git a/CHANGES.md b/CHANGES.md index d278153..39aeb39 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -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 diff --git a/bin/bunyan b/bin/bunyan index 826063b..e5af231 100755 --- a/bin/bunyan +++ b/bin/bunyan @@ -5,7 +5,7 @@ // See . // -var VERSION = "0.9.1"; +var VERSION = "0.10.0"; var util = require('util'); var pathlib = require('path'); diff --git a/lib/bunyan.js b/lib/bunyan.js index c602a38..b9bac94 100644 --- a/lib/bunyan.js +++ b/lib/bunyan.js @@ -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, diff --git a/package.json b/package.json index 8fc57ff..47aa47e 100644 --- a/package.json +++ b/package.json @@ -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 (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"