From 79c8fcce97e3538021810d4ca8ed10730e8cdd2f Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 30 Nov 2020 21:07:43 +0000 Subject: [PATCH] chore(release): 2.0.0 [skip ci] # [2.0.0](https://github.com/strvcom/heimdall/compare/1.1.3...2.0.0) (2020-11-30) ### Features * add commitlint Github Action ([66349e4](https://github.com/strvcom/heimdall/commit/66349e4aec59f28136b0aeaf1a7ebce6d534cf82)) * add option to exit the process after execute() resolves ([979a906](https://github.com/strvcom/heimdall/commit/979a90661f06bf6ca788cd092418e7027311fe0f)) * allow Delegate to log errors by implementing .logError() ([c6403f7](https://github.com/strvcom/heimdall/commit/c6403f7c956e7a95638628af0ffeb256ee8332b2)) * drop Node.js 10 support ([ca2f8ad](https://github.com/strvcom/heimdall/commit/ca2f8ad2a4b107a06624542c10de7b6c23b550e3)) * mark Node.js 14 as officially supported ([faca8aa](https://github.com/strvcom/heimdall/commit/faca8aa177130c08b0dfe73b27d63d5ee72a957c)) * rewrite to TypeScript ([6c59432](https://github.com/strvcom/heimdall/commit/6c5943240afdc3c19a1ed8eaf778f148ed163a7c)) ### BREAKING CHANGES * Node.js v10 is no longer supported. * Heimdall will no longer wait 10 seconds after a second signal has been received before it forcibly kills the process. Instead, it will kill the process immediatelly in the next event loop. * Node.js 11 is no longer officially supported although it is unlikely that Heimdall will not work on this release. --- CHANGELOG.md | 19 +++++++++++++++++++ package-lock.json | 2 +- package.json | 2 +- 3 files changed, 21 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3f093e..cb79af7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +# [2.0.0](https://github.com/strvcom/heimdall/compare/1.1.3...2.0.0) (2020-11-30) + + +### Features + +* add commitlint Github Action ([66349e4](https://github.com/strvcom/heimdall/commit/66349e4aec59f28136b0aeaf1a7ebce6d534cf82)) +* add option to exit the process after execute() resolves ([979a906](https://github.com/strvcom/heimdall/commit/979a90661f06bf6ca788cd092418e7027311fe0f)) +* allow Delegate to log errors by implementing .logError() ([c6403f7](https://github.com/strvcom/heimdall/commit/c6403f7c956e7a95638628af0ffeb256ee8332b2)) +* drop Node.js 10 support ([ca2f8ad](https://github.com/strvcom/heimdall/commit/ca2f8ad2a4b107a06624542c10de7b6c23b550e3)) +* mark Node.js 14 as officially supported ([faca8aa](https://github.com/strvcom/heimdall/commit/faca8aa177130c08b0dfe73b27d63d5ee72a957c)) +* rewrite to TypeScript ([6c59432](https://github.com/strvcom/heimdall/commit/6c5943240afdc3c19a1ed8eaf778f148ed163a7c)) + + +### BREAKING CHANGES + +* Node.js v10 is no longer supported. +* Heimdall will no longer wait 10 seconds after a second signal has been received before it forcibly kills the process. Instead, it will kill the process immediatelly in the next event loop. +* Node.js 11 is no longer officially supported although it is unlikely that Heimdall will not work on this release. + # [2.0.0-alpha.3](https://github.com/strvcom/heimdall/compare/2.0.0-alpha.2...2.0.0-alpha.3) (2020-11-13) diff --git a/package-lock.json b/package-lock.json index 53066aa..5361d7f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "@strv/heimdall", - "version": "2.0.0-alpha.3", + "version": "2.0.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 0bc6d9c..22f489f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@strv/heimdall", "description": "A simple process signal manager", - "version": "2.0.0-alpha.3", + "version": "2.0.0", "author": "Robert Rossmann ", "bugs": "https://github.com/strvcom/heimdall/issues", "contributors": [],