File tree 4 files changed +11
-4
lines changed
4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -8,8 +8,15 @@ Known issues:
8
8
## not yet released
9
9
10
10
11
+ ## 1.8.8
12
+
13
+ - Fix breakage due to a silly last minute "fix 'make check'".
14
+
15
+
11
16
## 1.8.7
12
17
18
+ Note: * Bad release.* Use 1.8.8 or later.
19
+
13
20
- [ issue #484 ] Fix breakage due to #474 in previous release.
14
21
15
22
Original file line number Diff line number Diff line change 11
11
* vim: expandtab:ts=4:sw=4
12
12
*/
13
13
14
- var VERSION = '1.8.7 ' ;
14
+ var VERSION = '1.8.8 ' ;
15
15
16
16
var p = console . log ;
17
17
var util = require ( 'util' ) ;
Original file line number Diff line number Diff line change 8
8
* vim: expandtab:ts=4:sw=4
9
9
*/
10
10
11
- var VERSION = '1.8.7 ' ;
11
+ var VERSION = '1.8.8 ' ;
12
12
13
13
/*
14
14
* Bunyan log format version. This becomes the 'v' field on all log records.
@@ -1197,7 +1197,7 @@ function safeCyclesArray() {
1197
1197
* Choose the best safe cycle function from what is available - see
1198
1198
* trentm/node-bunyan#445.
1199
1199
*/
1200
- var safeCycles = typeof ( Set !== 'undefined' ) ? safeCyclesSet : safeCyclesArray ;
1200
+ var safeCycles = typeof ( Set ) !== 'undefined' ? safeCyclesSet : safeCyclesArray ;
1201
1201
1202
1202
/**
1203
1203
* A fast JSON.stringify that handles cycles and getter exceptions (when
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " bunyan" ,
3
- "version" : " 1.8.7 " ,
3
+ "version" : " 1.8.8 " ,
4
4
"description" : " a JSON logging library for node.js services" ,
5
5
"author" : " Trent Mick <trentm@gmail.com> (http://trentm.com)" ,
6
6
"main" : " ./lib/bunyan.js" ,
You can’t perform that action at this time.
0 commit comments