diff --git a/CHANGELOG.md b/CHANGELOG.md index 4cb7936..0233a35 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,21 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this +## [v0.7.0] - 2022-01-12 + +### Feature removal (1 change) + +- Drop support for PHP 7.3 + +### New feature (1 change) + +- Support PHP 8.0 + +### Security fix (1 change) + +- Update npm packages with security patches (only used by website) + + ## [v0.6.0] - 2021-12-14 ### New feature (4 changes) diff --git a/builds/changelogger b/builds/changelogger index 8d218c7..3b35750 100755 Binary files a/builds/changelogger and b/builds/changelogger differ diff --git a/changelogs/unreleased/2021-12-14-022928-update-npm-deps.yml b/changelogs/unreleased/2021-12-14-022928-update-npm-deps.yml deleted file mode 100644 index e616fba..0000000 --- a/changelogs/unreleased/2021-12-14-022928-update-npm-deps.yml +++ /dev/null @@ -1,4 +0,0 @@ -title: 'Update npm packages with security patches (only used by website)' -type: security -author: '' -group: '' diff --git a/changelogs/unreleased/2022-01-12-115310-master.yml b/changelogs/unreleased/2022-01-12-115310-master.yml deleted file mode 100644 index 4bed1d6..0000000 --- a/changelogs/unreleased/2022-01-12-115310-master.yml +++ /dev/null @@ -1,4 +0,0 @@ -title: 'Drop support for PHP 7.3' -type: removed -author: '' -group: '' diff --git a/changelogs/unreleased/2022-01-12-115324-master.yml b/changelogs/unreleased/2022-01-12-115324-master.yml deleted file mode 100644 index 74f6993..0000000 --- a/changelogs/unreleased/2022-01-12-115324-master.yml +++ /dev/null @@ -1,4 +0,0 @@ -title: 'Support PHP 8.0' -type: added -author: '' -group: '' diff --git a/config/app.php b/config/app.php index 37c462b..66ea828 100644 --- a/config/app.php +++ b/config/app.php @@ -26,7 +26,7 @@ | */ - 'version' => 'v0.6.0', + 'version' => 'v0.7.0', /* |-------------------------------------------------------------------------- diff --git a/docs/changelog.md b/docs/changelog.md index 7fb42e2..57c3284 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -9,6 +9,20 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/), and this +## [v0.7.0] - 2022-01-12 + +### Feature removal (1 change) + +- Drop support for PHP 7.3 + +### New feature (1 change) + +- Support PHP 8.0 + +### Security fix (1 change) + +- Update npm packages with security patches (only used by website) + ## [v0.6.0] - 2021-12-14 ### New feature (4 changes) diff --git a/package.json b/package.json index 3fe5933..a23f99f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@churchtools/changelogger", - "version": "0.6.0", + "version": "0.7.0", "description": "Changelogger CLI", "repository": "git@github.com:churchtools/changelogger.git", "author": "Hans-Helge Buerger ",