From 67b8bab6c9ffb4f19c8b9844c174648a94ac0296 Mon Sep 17 00:00:00 2001 From: Trent Mick Date: Fri, 30 May 2014 21:00:24 -0700 Subject: [PATCH] prep for future dev --- CHANGES.md | 5 +++++ bin/bunyan | 2 +- lib/bunyan.js | 2 +- package.json | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index f63f94f..b55e7d7 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,6 +6,11 @@ Known issues: bug](https://github.com/TooTallNate/node-gyp/issues/65). +## bunyan 0.23.1 (not yet released) + +(nothing yet) + + ## bunyan 0.23.0 - [issue #139] Fix `bunyan` crash on a log record with `res.header` that is an diff --git a/bin/bunyan b/bin/bunyan index 8449bee..edfdd97 100755 --- a/bin/bunyan +++ b/bin/bunyan @@ -6,7 +6,7 @@ // See . // -var VERSION = '0.23.0'; +var VERSION = '0.23.1'; var p = console.log; var util = require('util'); diff --git a/lib/bunyan.js b/lib/bunyan.js index 3dfe9be..da73279 100644 --- a/lib/bunyan.js +++ b/lib/bunyan.js @@ -7,7 +7,7 @@ * vim: expandtab:ts=4:sw=4 */ -var VERSION = '0.23.0'; +var VERSION = '0.23.1'; // 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 2e2fe8d..b215ec4 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bunyan", - "version": "0.23.0", + "version": "0.23.1", "description": "a JSON Logger library for node.js services", "author": "Trent Mick (http://trentm.com)", "main": "./lib/bunyan.js",