From 3c58a17dee9cda273ace12fc5f6f1cbe8eb016c9 Mon Sep 17 00:00:00 2001 From: Arnold Zokas Date: Wed, 17 Aug 2016 11:15:09 +0100 Subject: [PATCH 1/4] add .nvmrc --- .nvmrc | 1 + 1 file changed, 1 insertion(+) create mode 100644 .nvmrc diff --git a/.nvmrc b/.nvmrc new file mode 100644 index 0000000..3401474 --- /dev/null +++ b/.nvmrc @@ -0,0 +1 @@ +4.4.7 \ No newline at end of file From 8a54bc8cc8b7a61d7d30cb0373ff03a0ddd20dc7 Mon Sep 17 00:00:00 2001 From: Arnold Zokas Date: Wed, 17 Aug 2016 11:41:26 +0100 Subject: [PATCH 2/4] update version number --- package.json | 2 +- tests/plugin (attributes).js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index fa8be96..df6d5cb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hapi-ot-logger", - "version": "3.1.0", + "version": "3.2.0-alpha", "description": "logger conforming to ot standards", "main": "index.js", "scripts": { diff --git a/tests/plugin (attributes).js b/tests/plugin (attributes).js index f3d1205..08810cc 100644 --- a/tests/plugin (attributes).js +++ b/tests/plugin (attributes).js @@ -9,6 +9,6 @@ describe('plugin (attributes)', function() { }); it('should contain version', function() { - expect(plugin.register.attributes.version).to.equal('3.1.0'); + expect(plugin.register.attributes.version).to.equal('3.2.0-alpha'); }); }); From 0d1debc4f74a8c216c7bbf1350e3a7733c9eacbf Mon Sep 17 00:00:00 2001 From: Arnold Zokas Date: Wed, 17 Aug 2016 11:42:12 +0100 Subject: [PATCH 3/4] update readme --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 6d1e1e2..78cc53b 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ server.register([ - **preSend** - *(optional)* enables modification of log message ## Release History -- **v3.1.0** (1026-07-XX) +- **v3.2.0** (1026-07-XX) - added optional `preSend(req, log)` function to enable modification of log message -- **v3.0.0** (2015-11-14) +- **v3.1.0** (2015-11-14) - ??? From fe4fc83bd9f099fdec115cc34b8b2db95f6d4715 Mon Sep 17 00:00:00 2001 From: Arnold Zokas Date: Thu, 18 Aug 2016 12:17:18 +0100 Subject: [PATCH 4/4] v3.2.0 --- README.md | 2 +- package.json | 4 ++-- tests/plugin (attributes).js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 78cc53b..f049071 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ server.register([ - **preSend** - *(optional)* enables modification of log message ## Release History -- **v3.2.0** (1026-07-XX) +- **v3.2.0** (2016-08-18) - added optional `preSend(req, log)` function to enable modification of log message - **v3.1.0** (2015-11-14) - ??? diff --git a/package.json b/package.json index df6d5cb..5553ee7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hapi-ot-logger", - "version": "3.2.0-alpha", + "version": "3.2.0", "description": "logger conforming to ot standards", "main": "index.js", "scripts": { @@ -14,7 +14,7 @@ "keywords": [ "hapi" ], - "author": "Andy Royle ", + "author": "Arnold Zokas ", "license": "MIT", "bugs": { "url": "https://github.com/opentable/hapi-ot-logger/issues" diff --git a/tests/plugin (attributes).js b/tests/plugin (attributes).js index 08810cc..6d9ce90 100644 --- a/tests/plugin (attributes).js +++ b/tests/plugin (attributes).js @@ -9,6 +9,6 @@ describe('plugin (attributes)', function() { }); it('should contain version', function() { - expect(plugin.register.attributes.version).to.equal('3.2.0-alpha'); + expect(plugin.register.attributes.version).to.equal('3.2.0'); }); });