diff --git a/.craftplugin b/.craftplugin index 6e550bf..160c5b5 100644 --- a/.craftplugin +++ b/.craftplugin @@ -1,7 +1,7 @@ { "pluginName": "Craft reCAPTCHA", "pluginDescription": "Integrate Google’s reCAPTCHA into your forms.", - "pluginVersion": "1.5.3", + "pluginVersion": "2.0.1", "pluginAuthorName": "Matt West", "pluginVendorName": "mattwest", "pluginAuthorUrl": "https://mattwest.design", diff --git a/CHANGELOG.md b/CHANGELOG.md index e6e5eb9..54553e2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,32 +4,52 @@ 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/). +## 2.0.1 - 2022-09-09 + +### Added + +- Added support for Craft 4 (Thanks [honsa](https://github.com/matt-west/craft-recaptcha/pull/34)!) + ## 1.5.3 - 2022-01-17 + ### Added + - Added Italian translations. (Thanks [andreapasotti](https://github.com/matt-west/craft-recaptcha/pull/31)!) - Use local language when requesting reCAPTCHA script. (Thanks [parwinderD4D](https://github.com/matt-west/craft-recaptcha/pull/28)) - Send user IP to Google with verification requests. Optional. Default = false. (Thanks [domstubbs](https://github.com/matt-west/craft-recaptcha/pull/30)) ## 1.5.2 - 2021-06-01 + ### Added + - Added Guzzle 7 compatibility. (Thanks [bossanova808](https://github.com/bossanova808)!) ## 1.5.1 - 2020-12-07 + ### Added + - Added German translation. (Thanks [MDXDave](https://github.com/MDXDave)!) ## 1.5.0 - 2020-06-29 + ### Added + - Allow plugin to verify requests and forward them on to other controller actions. (Thanks [Stephen Hamilton](https://github.com/totov)!) ## 1.3.0 - 2019-04-03 + ### Added + - Added the ability to specific size and theme options. (Thanks [Marty Wallace](https://github.com/martywallace)!) ## 1.0.1 - 2018-06-01 + ### Added + - The Craft [contact form](https://github.com/craftcms/contact-form) plugin is no longer required. ## 1.0.0 - 2018-03-17 + ### Added + - Initial release diff --git a/composer.json b/composer.json index 4f73d25..3373f39 100644 --- a/composer.json +++ b/composer.json @@ -1,44 +1,44 @@ { - "name": "matt-west/craft-recaptcha", - "description": "Integrate Google’s reCAPTCHA into your forms.", - "type": "craft-plugin", - "version": "1.5.3", - "keywords": [ - "craft", - "cms", - "craftcms", - "craft-plugin", - "craft recaptcha" - ], - "support": { - "docs": "https://github.com/matt-west/craft-recaptcha/blob/master/README.md", - "issues": "https://github.com/matt-west/craft-recaptcha/issues" - }, - "license": "MIT", - "authors": [ - { - "name": "Matt West", - "homepage": "https://mattwest.io" - } - ], - "require": { - "craftcms/cms": "^4.0.3", - "guzzlehttp/guzzle": "^6.3 || ^7.2" - }, - "autoload": { - "psr-4": { - "mattwest\\craftrecaptcha\\": "src/" - } - }, - "extra": { - "name": "reCAPTCHA", - "handle": "recaptcha", - "hasCpSettings": true, - "hasCpSection": false, - "changelogUrl": "https://raw.githubusercontent.com/matt-west/craft-recaptcha/master/CHANGELOG.md", - "components": { - "craftRecaptchaService": "mattwest\\craftrecaptcha\\services\\CraftRecaptchaService" - }, - "class": "mattwest\\craftrecaptcha\\CraftRecaptcha" + "name": "matt-west/craft-recaptcha", + "description": "Integrate Google’s reCAPTCHA into your forms.", + "type": "craft-plugin", + "version": "2.0.1", + "keywords": [ + "craft", + "cms", + "craftcms", + "craft-plugin", + "craft recaptcha" + ], + "support": { + "docs": "https://github.com/matt-west/craft-recaptcha/blob/master/README.md", + "issues": "https://github.com/matt-west/craft-recaptcha/issues" + }, + "license": "MIT", + "authors": [ + { + "name": "Matt West", + "homepage": "https://mattwest.design" } + ], + "require": { + "craftcms/cms": "^4.0.3", + "guzzlehttp/guzzle": "^6.3 || ^7.2" + }, + "autoload": { + "psr-4": { + "mattwest\\craftrecaptcha\\": "src/" + } + }, + "extra": { + "name": "reCAPTCHA", + "handle": "recaptcha", + "hasCpSettings": true, + "hasCpSection": false, + "changelogUrl": "https://raw.githubusercontent.com/matt-west/craft-recaptcha/master/CHANGELOG.md", + "components": { + "craftRecaptchaService": "mattwest\\craftrecaptcha\\services\\CraftRecaptchaService" + }, + "class": "mattwest\\craftrecaptcha\\CraftRecaptcha" + } }