Skip to content

Commit 741bcae

Browse files
committedMar 3, 2017
Fix a breakage I made in a last minute "fix 'make check'". 1.8.8
1 parent 907489d commit 741bcae

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed
 

‎CHANGES.md

+7
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,15 @@ Known issues:
88
## not yet released
99

1010

11+
## 1.8.8
12+
13+
- Fix breakage due to a silly last minute "fix 'make check'".
14+
15+
1116
## 1.8.7
1217

18+
Note: *Bad release.* Use 1.8.8 or later.
19+
1320
- [issue #484] Fix breakage due to #474 in previous release.
1421

1522

‎bin/bunyan

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* vim: expandtab:ts=4:sw=4
1212
*/
1313

14-
var VERSION = '1.8.7';
14+
var VERSION = '1.8.8';
1515

1616
var p = console.log;
1717
var util = require('util');

‎lib/bunyan.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* vim: expandtab:ts=4:sw=4
99
*/
1010

11-
var VERSION = '1.8.7';
11+
var VERSION = '1.8.8';
1212

1313
/*
1414
* Bunyan log format version. This becomes the 'v' field on all log records.
@@ -1197,7 +1197,7 @@ function safeCyclesArray() {
11971197
* Choose the best safe cycle function from what is available - see
11981198
* trentm/node-bunyan#445.
11991199
*/
1200-
var safeCycles = typeof (Set !== 'undefined') ? safeCyclesSet : safeCyclesArray;
1200+
var safeCycles = typeof (Set) !== 'undefined' ? safeCyclesSet : safeCyclesArray;
12011201

12021202
/**
12031203
* A fast JSON.stringify that handles cycles and getter exceptions (when

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bunyan",
3-
"version": "1.8.7",
3+
"version": "1.8.8",
44
"description": "a JSON logging library for node.js services",
55
"author": "Trent Mick <trentm@gmail.com> (http://trentm.com)",
66
"main": "./lib/bunyan.js",

0 commit comments

Comments
 (0)
Please sign in to comment.