From a8b054ec5dfa1eabfcad09869f16302e24709828 Mon Sep 17 00:00:00 2001 From: Trent Mick Date: Mon, 6 Feb 2012 21:35:39 -0800 Subject: [PATCH] prep for future dev --- CHANGES.md | 4 ++++ bin/bunyan | 2 +- lib/bunyan.js | 2 +- package.json | 2 +- 4 files changed, 7 insertions(+), 3 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 17df63f..9fa7298 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # bunyan Changelog +## bunyan 0.5.2 (not yet released) + +(nothing yet) + ## bunyan 0.5.1 - [issue #2] Add guard on `JSON.stringify`ing of log records before emission. diff --git a/bin/bunyan b/bin/bunyan index e07fd79..7b5ed1c 100755 --- a/bin/bunyan +++ b/bin/bunyan @@ -5,7 +5,7 @@ // See . // -var VERSION = "0.5.1"; +var VERSION = "0.5.2"; var util = require('util'); var pathlib = require('path'); diff --git a/lib/bunyan.js b/lib/bunyan.js index 20887ed..8fbce8f 100644 --- a/lib/bunyan.js +++ b/lib/bunyan.js @@ -2,7 +2,7 @@ * Copyright 2012 (c) Trent Mick. All rights reserved. */ -var VERSION = "0.5.1"; +var VERSION = "0.5.2"; // 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 e6df903..20af61f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bunyan", - "version": "0.5.1", + "version": "0.5.2", "description": "a JSON Logger library for node.js servers", "main": "./lib/bunyan.js", "bin": {