diff --git a/CHANGES.md b/CHANGES.md index d93151b..57864e6 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,9 @@ # bunyan Changelog +## bunyan 0.3.1 (not yet released) + +(nothing yet) + ## bunyan 0.3.0 - `log.child(options[, simple])` Added `simple` boolean arg. Set `true` to diff --git a/bin/bunyan b/bin/bunyan index 2b0f086..3c8ea7c 100755 --- a/bin/bunyan +++ b/bin/bunyan @@ -5,7 +5,7 @@ // See . // -var VERSION = "0.3.0"; +var VERSION = "0.3.1"; var util = require('util'); var pathlib = require('path'); diff --git a/lib/bunyan.js b/lib/bunyan.js index a044dd8..f150298 100644 --- a/lib/bunyan.js +++ b/lib/bunyan.js @@ -2,7 +2,7 @@ * Copyright 2012 (c) Trent Mick. All rights reserved. */ -var VERSION = "0.3.0"; +var VERSION = "0.3.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 6dc54c5..eb871ef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bunyan", - "version": "0.3.0", + "version": "0.3.1", "description": "a JSON Logger library for node.js servers", "main": "./lib/bunyan.js", "bin": {