diff --git a/CHANGELOG.md b/CHANGELOG.md index a0417aeb..f38af10c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +#### [Version 2.2.2](https://github.com/Codeinwp/optimole-wp/compare/v2.2.1...v2.2.2) (2019-11-04) + +* **Bug Fixes** + * ignore rescale on GIF and SVG when lazyload is active ([d4e63b6](https://github.com/Codeinwp/optimole-wp/commit/d4e63b6)) + * improve compatibility with Thrive Architect ([55a5952](https://github.com/Codeinwp/optimole-wp/commit/55a5952)) + * improve generic placeholder computed width/height when the source size is unknown ([0c3cc3f](https://github.com/Codeinwp/optimole-wp/commit/0c3cc3f)) + * sign only URLs that don't use an whitelisted domain. ([7813bf9](https://github.com/Codeinwp/optimole-wp/commit/7813bf9)) + * strip retina based prefix to use original url ([948c667](https://github.com/Codeinwp/optimole-wp/commit/948c667)) + #### [Version 2.2.1](https://github.com/Codeinwp/optimole-wp/compare/v2.2.0...v2.2.1) (2019-10-21) * **Bug Fixes** diff --git a/README.md b/README.md index ea4255af..669c8906 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,17 @@ Premium users will be able to optimize images for more than 25k monthly active u ## Changelog ## +#### [Version 2.2.2](https://github.com/Codeinwp/optimole-wp/compare/v2.2.1...v2.2.2) (2019-11-04) + +* **Bug Fixes** + * ignore rescale on GIF and SVG when lazyload is active ([d4e63b6](https://github.com/Codeinwp/optimole-wp/commit/d4e63b6)) + * improve compatibility with Thrive Architect ([55a5952](https://github.com/Codeinwp/optimole-wp/commit/55a5952)) + * improve generic placeholder computed width/height when the source size is unknown ([0c3cc3f](https://github.com/Codeinwp/optimole-wp/commit/0c3cc3f)) + * sign only URLs that don't use an whitelisted domain. ([7813bf9](https://github.com/Codeinwp/optimole-wp/commit/7813bf9)) + * strip retina based prefix to use original url ([948c667](https://github.com/Codeinwp/optimole-wp/commit/948c667)) + + + #### [Version 2.2.1](https://github.com/Codeinwp/optimole-wp/compare/v2.2.0...v2.2.1) (2019-10-21) * **Bug Fixes** diff --git a/optimole-wp.php b/optimole-wp.php index 99f08996..84f22f76 100644 --- a/optimole-wp.php +++ b/optimole-wp.php @@ -2,7 +2,7 @@ /** * Plugin Name: Image optimization service by Optimole * Description: Complete handling of your website images. - * Version: 2.2.1 + * Version: 2.2.2 * Author: Optimole * Author URI: https://optimole.com * License: GPL-2.0+ @@ -75,7 +75,7 @@ function optml() { define( 'OPTML_URL', plugin_dir_url( __FILE__ ) ); define( 'OPTML_JS_CDN', 'd5jmkjjpb7yfg.cloudfront.net' ); define( 'OPTML_PATH', plugin_dir_path( __FILE__ ) ); - define( 'OPTML_VERSION', '2.2.1' ); + define( 'OPTML_VERSION', '2.2.2' ); define( 'OPTML_NAMESPACE', 'optml' ); define( 'OPTML_BASEFILE', __FILE__ ); // Fallback for old PHP versions when this constant is not defined. diff --git a/package-lock.json b/package-lock.json index 7a9799cf..99705188 100755 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "optimole-wp", - "version": "2.2.0", + "version": "2.2.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index c28e842a..49751961 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "optimole-wp", - "version": "2.2.1", + "version": "2.2.2", "description": "Image optimization & CDN by Optimole", "repository": { "type": "git", diff --git a/readme.txt b/readme.txt index 4ae8e6fd..0cdf0985 100755 --- a/readme.txt +++ b/readme.txt @@ -89,6 +89,17 @@ Premium users will be able to optimize images for more than 25k monthly active u == Changelog == +#### [Version 2.2.2](https://github.com/Codeinwp/optimole-wp/compare/v2.2.1...v2.2.2) (2019-11-04) + +* **Bug Fixes** + * ignore rescale on GIF and SVG when lazyload is active ([d4e63b6](https://github.com/Codeinwp/optimole-wp/commit/d4e63b6)) + * improve compatibility with Thrive Architect ([55a5952](https://github.com/Codeinwp/optimole-wp/commit/55a5952)) + * improve generic placeholder computed width/height when the source size is unknown ([0c3cc3f](https://github.com/Codeinwp/optimole-wp/commit/0c3cc3f)) + * sign only URLs that don't use an whitelisted domain. ([7813bf9](https://github.com/Codeinwp/optimole-wp/commit/7813bf9)) + * strip retina based prefix to use original url ([948c667](https://github.com/Codeinwp/optimole-wp/commit/948c667)) + + + #### [Version 2.2.1](https://github.com/Codeinwp/optimole-wp/compare/v2.2.0...v2.2.1) (2019-10-21) * **Bug Fixes**