From 024ca6c3a37232203665a681e76243d6898e0353 Mon Sep 17 00:00:00 2001 From: Kenneth Geisshirt Date: Tue, 30 Apr 2019 20:38:58 +0200 Subject: [PATCH] [1.1.0] Bump version --- CHANGELOG.md | 5 +++-- package-lock.json | 26 ++++++++++++++++++++++++++ package.json | 2 +- 3 files changed, 30 insertions(+), 3 deletions(-) create mode 100644 package-lock.json diff --git a/CHANGELOG.md b/CHANGELOG.md index b525dd3..52d9833 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,9 @@ -### X.Y.Z (YYYY-MM-DD) +### 1.1.0 (2018-04-30) * [PR#37](https://github.com/ddopson/node-segfault-handler/pull/37) - Fix lack of stack trace on ARM. * [PR#57](https://github.com/ddopson/node-segfault-handler/pull/57) - Support for Xcode 10. -* [PR#58](https://github.com/ddopson/node-segfault-handler/pull/58) - Fix the `v8::String` deprecation warning +* [PR#58](https://github.com/ddopson/node-segfault-handler/pull/58) - Fix the `v8::String` deprecation warning. + ### 1.0.1 (2018-05-17) * [PR#36](https://github.com/ddopson/node-segfault-handler/pull/36) - Add license field to `package.json`. diff --git a/package-lock.json b/package-lock.json new file mode 100644 index 0000000..7d083df --- /dev/null +++ b/package-lock.json @@ -0,0 +1,26 @@ +{ + "name": "segfault-handler", + "version": "1.1.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "requires": { + "file-uri-to-path": "1.0.0" + } + }, + "file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==" + }, + "nan": { + "version": "2.13.2", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.13.2.tgz", + "integrity": "sha512-TghvYc72wlMGMVMluVo9WRJc0mB8KxxF/gZ4YYFy7V2ZQX9l7rgbPg7vjS9mt6U5HXODVFVI2bOduCzwOMv/lw==" + } + } +} diff --git a/package.json b/package.json index 425defd..9b9eba0 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "segfault-handler", "description": "catches SIGSEGV and prints diagnostic information", - "version": "1.0.1", + "version": "1.1.0", "author": "Kenneth Geisshirt ", "contributors": [ "Dave Dopson ",