diff --git a/CHANGELOG.md b/CHANGELOG.md index 49d6231..f37d4f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ 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.1.1] - 2022-10-28 + +### Added +- Add missing Composer repository + ## [2.1.0] - 2022-10-28 ### Added diff --git a/composer.json b/composer.json index cdb6e25..3eed75f 100644 --- a/composer.json +++ b/composer.json @@ -13,5 +13,23 @@ "php": "^8.0.2", "composer/installers": "^1.0 || ^2.0", "october/system": "^2.0 || ^3.0" + }, + "repositories": [ + { + "type": "composer", + "url": "https://gateway.octobercms.com" + } + ], + "archive": { + "exclude": [ + ".gitattributes", + ".github", + ".gitignore" + ] + }, + "config": { + "allow-plugins": { + "composer/installers": true + } } } diff --git a/updates/version.yaml b/updates/version.yaml index 048109c..af04852 100644 --- a/updates/version.yaml +++ b/updates/version.yaml @@ -8,3 +8,4 @@ v2.0.2: "Minor improvements -- See: CHANGELOG.md" v2.0.3: "Fixes type error when using `csrf_token()` Twig function" v2.0.4: "Maintenance release" v2.1.0: "Add support for October CMS 3.x" +v2.1.1: "Add missing composer repository"