From 830ae26f8733655065d20197635147a82520350d Mon Sep 17 00:00:00 2001 From: Trent Mick Date: Mon, 10 Sep 2012 11:58:19 -0700 Subject: [PATCH] v0.14.0 bump for safe JSON.stringify change --- CHANGES.md | 5 +++-- bin/bunyan | 2 +- lib/bunyan.js | 2 +- package.json | 2 +- 4 files changed, 6 insertions(+), 5 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 188d49e..2151bbc 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,8 +1,9 @@ # bunyan Changelog -## bunyan 0.13.6 (not yet released) +## bunyan 0.14.0 (not yet released) -(nothing yet) +- [pull #41] Safe `JSON.stringify`ing of emitted log records to avoid blowing + up on circular objects (by Isaac Schlueter). ## bunyan 0.13.5 diff --git a/bin/bunyan b/bin/bunyan index 45d1f14..f20a6f8 100755 --- a/bin/bunyan +++ b/bin/bunyan @@ -5,7 +5,7 @@ // See . // -var VERSION = "0.13.6"; +var VERSION = "0.14.0"; var util = require('util'); var pathlib = require('path'); diff --git a/lib/bunyan.js b/lib/bunyan.js index 7401ad8..76efcf3 100644 --- a/lib/bunyan.js +++ b/lib/bunyan.js @@ -4,7 +4,7 @@ * The bunyan logging library for node.js. */ -var VERSION = '0.13.6'; +var VERSION = '0.14.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 add0ba1..1e42eac 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bunyan", - "version": "0.13.6", + "version": "0.14.0", "description": "a JSON Logger library for node.js services", "author": "Trent Mick (http://trentm.com)", "main": "./lib/bunyan.js",