diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..eca2e30 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,7 @@ +# +# Exclude files from exporting +# + +/.gitattributes export-ignore +/.github export-ignore +/.gitignore export-ignore diff --git a/CHANGELOG.md b/CHANGELOG.md index bbf9f43..7d80e29 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,12 +4,23 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [2.0.2] - 2022-03-08 + +### Changed +- Version constraint of "composer/installers" to "^1.0 || ^2.0" + +### Added +- .gitattributes file +- Version constraint for "october/system" + ## [2.0.1] - 2022-02-09 + ### Changed - Plugin documentation. - Remove code comments. ## [2.0.0] - 2021-11-05 + ### Added - PHP 7.4 and PHP 8.0 support. diff --git a/composer.json b/composer.json index 3550ee3..bfd940a 100644 --- a/composer.json +++ b/composer.json @@ -1,35 +1,37 @@ { "name": "vdlp/oc-horizon-plugin", - "type": "october-plugin", "description": "Laravel Horizon integration for October CMS", - "homepage": "https://vdlp.nl", + "license": "GPL-2.0-only", + "type": "october-plugin", + "keywords": [ + "october", + "octobercms", + "horizon", + "laravel-queues" + ], "authors": [ { "name": "Van der Let & Partners", "email": "octobercms@vdlp.nl" } ], + "homepage": "https://vdlp.nl", "support": { "email": "octobercms@vdlp.nl" }, - "keywords": [ - "october", - "octobercms", - "horizon", - "laravel-queues" - ], - "license": "GPL-2.0-only", "require": { "php": "^7.4 || ^8.0", "ext-pcntl": "*", "ext-posix": "*", "ext-redis": "*", + "composer/installers": "^1.0 || ^2.0", "laravel/horizon": "^3.0", - "composer/installers": "^1.0" + "october/system": "^1.0 || ^2.0" }, "archive": { "exclude": [ ".gitignore", + ".gitattributes", ".idea/" ] } diff --git a/updates/version.yaml b/updates/version.yaml index a1fd8f1..b266c1c 100644 --- a/updates/version.yaml +++ b/updates/version.yaml @@ -1,3 +1,4 @@ v1.0.0: "First version of Vdlp.Horizon" v2.0.0: "Removed the dependency of the October CMS module. Moved Horizon Assets. See CHANGELOG for more details." v2.0.1: "Update plugin documentation" +v2.0.2: "Maintenance release"