v1.8.9; changelog update for #409
This commit is contained in:
parent
aff022bb2e
commit
34f4469a25
5 changed files with 13 additions and 3 deletions
1
AUTHORS
1
AUTHORS
|
@ -39,3 +39,4 @@ Paul Milham (https://github.com/domrein)
|
|||
Frankie O'Rourke (https://github.com/psfrankie)
|
||||
Cody Mello (https://github.com/melloc)
|
||||
Todd Whiteman (https://github.com/twhiteman)
|
||||
Zach Bjornson (https://github.com/zbjornson)
|
||||
|
|
|
@ -7,9 +7,18 @@ Known issues:
|
|||
|
||||
## not yet released
|
||||
|
||||
(nothing yet)
|
||||
|
||||
|
||||
## 1.8.9
|
||||
|
||||
- [pull #409, issue #246] Revert a change added to the `bunyan` CLI version
|
||||
1.0.1 where `SIGINT` was ignored, such that Ctrl+C could not be used to
|
||||
terminate bunyan. (By @zbjornson and @davepacheco.)
|
||||
- [pull #469] Fix a strict mode (`"use strict;"`) error in some versions of
|
||||
Safari.
|
||||
|
||||
|
||||
## 1.8.8
|
||||
|
||||
- Fix breakage due to a silly last minute "fix 'make check'".
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
* vim: expandtab:ts=4:sw=4
|
||||
*/
|
||||
|
||||
var VERSION = '1.8.8';
|
||||
var VERSION = '1.8.9';
|
||||
|
||||
var p = console.log;
|
||||
var util = require('util');
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
* vim: expandtab:ts=4:sw=4
|
||||
*/
|
||||
|
||||
var VERSION = '1.8.8';
|
||||
var VERSION = '1.8.9';
|
||||
|
||||
/*
|
||||
* Bunyan log format version. This becomes the 'v' field on all log records.
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "bunyan",
|
||||
"version": "1.8.8",
|
||||
"version": "1.8.9",
|
||||
"description": "a JSON logging library for node.js services",
|
||||
"author": "Trent Mick <trentm@gmail.com> (http://trentm.com)",
|
||||
"main": "./lib/bunyan.js",
|
||||
|
|
Loading…
Reference in a new issue