Skip to content

Commit 34f4469

Browse files
committedMar 21, 2017
v1.8.9; changelog update for #409
1 parent aff022b commit 34f4469

File tree

5 files changed

+13
-3
lines changed

5 files changed

+13
-3
lines changed
 

‎AUTHORS

+1
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,4 @@ Paul Milham (https://github.com/domrein)
3939
Frankie O'Rourke (https://github.com/psfrankie)
4040
Cody Mello (https://github.com/melloc)
4141
Todd Whiteman (https://github.com/twhiteman)
42+
Zach Bjornson (https://github.com/zbjornson)

‎CHANGES.md

+9
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,18 @@ Known issues:
77

88
## not yet released
99

10+
(nothing yet)
11+
12+
13+
## 1.8.9
14+
15+
- [pull #409, issue #246] Revert a change added to the `bunyan` CLI version
16+
1.0.1 where `SIGINT` was ignored, such that Ctrl+C could not be used to
17+
terminate bunyan. (By @zbjornson and @davepacheco.)
1018
- [pull #469] Fix a strict mode (`"use strict;"`) error in some versions of
1119
Safari.
1220

21+
1322
## 1.8.8
1423

1524
- Fix breakage due to a silly last minute "fix 'make check'".

‎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.8';
14+
var VERSION = '1.8.9';
1515

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

‎lib/bunyan.js

+1-1
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.8';
11+
var VERSION = '1.8.9';
1212

1313
/*
1414
* Bunyan log format version. This becomes the 'v' field on all log records.

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bunyan",
3-
"version": "1.8.8",
3+
"version": "1.8.9",
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.