diff --git a/CHANGELOG.md b/CHANGELOG.md index 1df2d6d..64a726b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # PathTools Changelog +## 1.0.3 - 2017.03.13 +### Fixed +* The handle used for translations is now all lowercase + ## 1.0.2 - 2017.03.12 ### Added * Added `craft/cms` as a composer dependency diff --git a/composer.json b/composer.json index 77d3edd..8ef3576 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "nystudio107/craft3-pathtools", "description": "This twig plugin for the Craft CMS brings convenient path & url manipulation functions & filters to your Twig templates.", "type": "craft-plugin", - "version": "1.0.2", + "version": "1.0.3", "keywords": [ "craft", "cms", diff --git a/src/PathTools.php b/src/PathTools.php index 841b65b..80ba62a 100644 --- a/src/PathTools.php +++ b/src/PathTools.php @@ -46,6 +46,6 @@ public function init() Craft::$app->view->twig->addExtension(new PathToolsTwigExtension()); - Craft::info('PathTools ' . Craft::t('pathTools', 'plugin loaded'), __METHOD__); + Craft::info('PathTools ' . Craft::t('pathtools', 'plugin loaded'), __METHOD__); } }