diff --git a/CHANGELOG.md b/CHANGELOG.md index 4186d35..45d265a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). +## 1.0.3 - 2019-02-21 +### Fixed +- Fixed missing settings model + ## 1.0.2 - 2019-02-14 ### Added - Added support for multiple custom labels and templates diff --git a/composer.json b/composer.json index e50a40c..5d712de 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "superbig/craft-batchpdfexport", "description": "Mass export PDF invoices in one go", "type": "craft-plugin", - "version": "1.0.2", + "version": "1.0.3", "keywords": [ "craft", "cms", diff --git a/src/models/Settings.php b/src/models/Settings.php new file mode 100644 index 0000000..9aba52d --- /dev/null +++ b/src/models/Settings.php @@ -0,0 +1,60 @@ + []], + ]; + } +}