diff --git a/README.md b/README.md index f42b2f0..43663af 100644 --- a/README.md +++ b/README.md @@ -134,5 +134,10 @@ If you use SVGO and allowed to add a custom task, you can copy/paste the code be ## Changelog +### 1.0.1 (September 7, 2018) +* Add compatibility for ACF Pro 5.7.x +* Introduce SVGO custom task `stripComments` +* Fix mistakes in README + ### 1.0.0 (May 31, 2018) * Initial Release. diff --git a/acf-svg-icon.php b/acf-svg-icon.php index 3b8c788..0c29bef 100644 --- a/acf-svg-icon.php +++ b/acf-svg-icon.php @@ -3,7 +3,7 @@ Plugin Name: Advanced Custom Fields: SVG Icon Plugin URI: https://github.com/7studio/acf-svg-icon Description: Add a new ACF field type: "SVG Icon" which allows you to select icon(s) from a SVG sprite. -Version: 1.0.0 +Version: 1.0.1 Author: Xavier Zalawa Author URI: http://www.7studio.fr License: GPLv2 or later @@ -21,7 +21,7 @@ -define( 'SWP_ACF_SVG_ICON_VERSION', '1.0.0' ); +define( 'SWP_ACF_SVG_ICON_VERSION', '1.0.1' ); define( 'SWP_ACF_SVG_ICON_FILE', __FILE__ ); define( 'SWP_ACF_SVG_ICON_URL', plugin_dir_url( SWP_ACF_SVG_ICON_FILE ) ); define( 'SWP_ACF_SVG_ICON_DIR', plugin_dir_path( SWP_ACF_SVG_ICON_FILE ) ); diff --git a/package.json b/package.json index 710f82b..70a080f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "acf-svg-icon-field", - "version": "1.0.0", + "version": "1.0.1", "description": "ACF SVG Icon Field", "author": "Xavier Zalawa", "babel": { diff --git a/readme.txt b/readme.txt index dcf54d3..240da28 100644 --- a/readme.txt +++ b/readme.txt @@ -27,5 +27,10 @@ This ACF field type is compatible with: == Changelog == += 1.0.1 = +* Add compatibility for ACF Pro 5.7.x +* Introduce SVGO custom task `stripComments` +* Fix mistakes in README + = 1.0.0 = * Initial Release.