Skip to content

Commit 13c86f1

Browse files
committedApr 5, 2017
v1.8.10
1 parent 1d51179 commit 13c86f1

File tree

4 files changed

+12
-7
lines changed

4 files changed

+12
-7
lines changed
 

‎CHANGES.md

+5
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ Known issues:
77

88
## not yet released
99

10+
(nothing yet)
11+
12+
13+
## 1.8.10
14+
1015
- Ensure that `bunyan` errors out if attempting to use `-p PID` and
1116
file args at the same time.
1217

‎bin/bunyan

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env node
22
/**
3-
* Copyright 2016 Trent Mick
4-
* Copyright 2016 Joyent Inc.
3+
* Copyright 2017 Trent Mick
4+
* Copyright 2017 Joyent Inc.
55
*
66
* bunyan -- filter and pretty-print Bunyan log files (line-delimited JSON)
77
*
@@ -11,7 +11,7 @@
1111
* vim: expandtab:ts=4:sw=4
1212
*/
1313

14-
var VERSION = '1.8.9';
14+
var VERSION = '1.8.10';
1515

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

‎lib/bunyan.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/**
2-
* Copyright (c) 2015 Trent Mick.
3-
* Copyright (c) 2015 Joyent Inc.
2+
* Copyright (c) 2017 Trent Mick.
3+
* Copyright (c) 2017 Joyent Inc.
44
*
55
* The bunyan logging library for node.js.
66
*
77
* -*- mode: js -*-
88
* vim: expandtab:ts=4:sw=4
99
*/
1010

11-
var VERSION = '1.8.9';
11+
var VERSION = '1.8.10';
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.9",
3+
"version": "1.8.10",
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.