Skip to content

Commit

Permalink
v1.8.10
Browse files Browse the repository at this point in the history
  • Loading branch information
trentm committed Apr 5, 2017
1 parent 1d51179 commit 13c86f1
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
Expand Up @@ -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.

Expand Down
6 changes: 3 additions & 3 deletions bin/bunyan
@@ -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)
*
Expand All @@ -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');
Expand Down
6 changes: 3 additions & 3 deletions lib/bunyan.js
@@ -1,14 +1,14 @@
/**
* 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.
*
* -*- mode: js -*-
* 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.
Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -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",
Expand Down

0 comments on commit 13c86f1

Please sign in to comment.