diff --git a/CHANGELOG.md b/CHANGELOG.md index 88fbe1d..910c760 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.0.1] - 2023-09-24 +### Fixed +- Fix localization error (thanks to @mgroensmit) + ## [2.0.0] - 2022-12-17 ### Changed - Renamed composer name from `siteation/magento2-module-storeinfo` to `siteation/magento2-storeinfo` diff --git a/composer.json b/composer.json index ed94046..7b7ed9b 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "siteation/magento2-storeinfo", - "version": "2.0.0", + "version": "2.0.1", "license": "MIT", "type": "magento2-module", "description": "Get your store information with ease", @@ -26,7 +26,9 @@ "magento/module-store": "^101.0|^101.1" }, "autoload": { - "files": ["registration.php"], + "files": [ + "registration.php" + ], "psr-4": { "Siteation\\StoreInfo\\": "" }