diff --git a/CHANGES.md b/CHANGES.md index b82ca20..993e982 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -7,6 +7,11 @@ Known issues: ## not yet released +(nothing yet) + + +## 1.8.11 + - [issue #504] The `bunyan` 1.x CLI adds a `Host: $client_req.address[:$client_req.port]` header when rendering a `client_req` field in a log record. Fix that here to: (a) not add it if `client_req.headers` already includes a host header; and diff --git a/bin/bunyan b/bin/bunyan index a2a4e22..a18c42f 100755 --- a/bin/bunyan +++ b/bin/bunyan @@ -11,7 +11,7 @@ * vim: expandtab:ts=4:sw=4 */ -var VERSION = '1.8.10'; +var VERSION = '1.8.11'; var p = console.log; var util = require('util'); diff --git a/lib/bunyan.js b/lib/bunyan.js index 8c8a974..b6f1674 100644 --- a/lib/bunyan.js +++ b/lib/bunyan.js @@ -8,7 +8,7 @@ * vim: expandtab:ts=4:sw=4 */ -var VERSION = '1.8.10'; +var VERSION = '1.8.11'; /* * Bunyan log format version. This becomes the 'v' field on all log records. diff --git a/package.json b/package.json index 9b31ef9..00dbd41 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "bunyan", - "version": "1.8.10", + "version": "1.8.11", "description": "a JSON logging library for node.js services", "author": "Trent Mick (http://trentm.com)", "main": "./lib/bunyan.js",