master 1.8.10
Trent Mick 2017-04-04 23:34:07 -07:00
parent 1d511793f0
commit 13c86f1d15
4 changed files with 12 additions and 7 deletions

View File

@ -7,6 +7,11 @@ Known issues:
## not yet released
(nothing yet)
## 1.8.10
- Ensure that `bunyan` errors out if attempting to use `-p PID` and
file args at the same time.

View File

@ -1,7 +1,7 @@
#!/usr/bin/env node
/**
* Copyright 2016 Trent Mick
* Copyright 2016 Joyent Inc.
* Copyright 2017 Trent Mick
* Copyright 2017 Joyent Inc.
*
* bunyan -- filter and pretty-print Bunyan log files (line-delimited JSON)
*
@ -11,7 +11,7 @@
* vim: expandtab:ts=4:sw=4
*/
var VERSION = '1.8.9';
var VERSION = '1.8.10';
var p = console.log;
var util = require('util');

View File

@ -1,6 +1,6 @@
/**
* Copyright (c) 2015 Trent Mick.
* Copyright (c) 2015 Joyent Inc.
* Copyright (c) 2017 Trent Mick.
* Copyright (c) 2017 Joyent Inc.
*
* The bunyan logging library for node.js.
*
@ -8,7 +8,7 @@
* vim: expandtab:ts=4:sw=4
*/
var VERSION = '1.8.9';
var VERSION = '1.8.10';
/*
* Bunyan log format version. This becomes the 'v' field on all log records.

View File

@ -1,6 +1,6 @@
{
"name": "bunyan",
"version": "1.8.9",
"version": "1.8.10",
"description": "a JSON logging library for node.js services",
"author": "Trent Mick <trentm@gmail.com> (http://trentm.com)",
"main": "./lib/bunyan.js",