Fix a breakage I made in a last minute "fix 'make check'". 1.8.8
This commit is contained in:
parent
907489d816
commit
741bcaeb5d
4 changed files with 11 additions and 4 deletions
|
@ -8,8 +8,15 @@ Known issues:
|
||||||
## not yet released
|
## not yet released
|
||||||
|
|
||||||
|
|
||||||
|
## 1.8.8
|
||||||
|
|
||||||
|
- Fix breakage due to a silly last minute "fix 'make check'".
|
||||||
|
|
||||||
|
|
||||||
## 1.8.7
|
## 1.8.7
|
||||||
|
|
||||||
|
Note: *Bad release.* Use 1.8.8 or later.
|
||||||
|
|
||||||
- [issue #484] Fix breakage due to #474 in previous release.
|
- [issue #484] Fix breakage due to #474 in previous release.
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
* vim: expandtab:ts=4:sw=4
|
* vim: expandtab:ts=4:sw=4
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var VERSION = '1.8.7';
|
var VERSION = '1.8.8';
|
||||||
|
|
||||||
var p = console.log;
|
var p = console.log;
|
||||||
var util = require('util');
|
var util = require('util');
|
||||||
|
|
|
@ -8,7 +8,7 @@
|
||||||
* vim: expandtab:ts=4:sw=4
|
* vim: expandtab:ts=4:sw=4
|
||||||
*/
|
*/
|
||||||
|
|
||||||
var VERSION = '1.8.7';
|
var VERSION = '1.8.8';
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Bunyan log format version. This becomes the 'v' field on all log records.
|
* Bunyan log format version. This becomes the 'v' field on all log records.
|
||||||
|
@ -1197,7 +1197,7 @@ function safeCyclesArray() {
|
||||||
* Choose the best safe cycle function from what is available - see
|
* Choose the best safe cycle function from what is available - see
|
||||||
* trentm/node-bunyan#445.
|
* trentm/node-bunyan#445.
|
||||||
*/
|
*/
|
||||||
var safeCycles = typeof (Set !== 'undefined') ? safeCyclesSet : safeCyclesArray;
|
var safeCycles = typeof (Set) !== 'undefined' ? safeCyclesSet : safeCyclesArray;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* A fast JSON.stringify that handles cycles and getter exceptions (when
|
* A fast JSON.stringify that handles cycles and getter exceptions (when
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "bunyan",
|
"name": "bunyan",
|
||||||
"version": "1.8.7",
|
"version": "1.8.8",
|
||||||
"description": "a JSON logging library for node.js services",
|
"description": "a JSON logging library for node.js services",
|
||||||
"author": "Trent Mick <trentm@gmail.com> (http://trentm.com)",
|
"author": "Trent Mick <trentm@gmail.com> (http://trentm.com)",
|
||||||
"main": "./lib/bunyan.js",
|
"main": "./lib/bunyan.js",
|
||||||
|
|
Loading…
Reference in a new issue