diff --git a/CHANGELOG.md b/CHANGELOG.md index 83f392b27..e749e9123 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +##### [Version 1.6.2](https://github.com/Codeinwp/otter-blocks/compare/v1.6.1...v1.6.2) (2021-03-26) + +- Fix Button Groups alignment +- Don't enqueue empty CSS +- Adds new Accordion Block +- CPT support to Posts Block + ##### [Version 1.6.1](https://github.com/Codeinwp/otter-blocks/compare/v1.6.0...v1.6.1) (2021-03-02) - Fix CSS Extensions causing Reusable Blocks to crash. diff --git a/composer.json b/composer.json index fea4b5b47..c0f745ab4 100644 --- a/composer.json +++ b/composer.json @@ -2,7 +2,7 @@ "name": "codeinwp/otter-blocks", "description": "A set of awesome Gutenberg Blocks by ThemeIsle.", "type": "wordpress-plugin", - "version": "1.6.1", + "version": "1.6.2", "require-dev": { "squizlabs/php_codesniffer": "^3.3", "wp-coding-standards/wpcs": "^1", diff --git a/otter-blocks.php b/otter-blocks.php index 6024ece3f..e6c8e3aa4 100644 --- a/otter-blocks.php +++ b/otter-blocks.php @@ -7,7 +7,7 @@ * Plugin Name: Gutenberg Blocks and Template Library by Otter * Plugin URI: https://themeisle.com/plugins/otter-blocks * Description: Create beautiful and attracting posts, pages, and landing pages with Gutenberg Blocks and Template Library by Otter. Otter comes with dozens of Gutenberg blocks that are all you need to build beautiful pages. - * Version: 1.6.1 + * Version: 1.6.2 * Author: ThemeIsle * Author URI: https://themeisle.com * License: GPL-2.0+ @@ -26,7 +26,7 @@ define( 'OTTER_BLOCKS_BASEFILE', __FILE__ ); define( 'OTTER_BLOCKS_URL', plugins_url( '/', __FILE__ ) ); define( 'OTTER_BLOCKS_PATH', dirname( __FILE__ ) ); -define( 'OTTER_BLOCKS_VERSION', '1.6.1' ); +define( 'OTTER_BLOCKS_VERSION', '1.6.2' ); define( 'OTTER_BLOCKS_DEV', false ); $vendor_file = OTTER_BLOCKS_PATH . '/vendor/autoload.php'; diff --git a/package-lock.json b/package-lock.json index 54e401ec1..a00bd8483 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "otter-blocks", - "version": "1.6.1", + "version": "1.6.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 92e226f1c..a1f6cefe9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "otter-blocks", - "version": "1.6.1", + "version": "1.6.2", "description": "Gutenberg Blocks and Template Library by Otter", "scripts": { "build": "cross-env BABEL_ENV=default NODE_ENV=production webpack", diff --git a/readme.md b/readme.md index 796cbafc1..7b062d351 100644 --- a/readme.md +++ b/readme.md @@ -1,9 +1,9 @@ # Gutenberg Blocks and Template Library by Otter # **Contributors:** [themeisle](https://profiles.wordpress.org/themeisle), [hardeepasrani](https://profiles.wordpress.org/hardeepasrani), [soarerobertdaniel7](https://profiles.wordpress.org/soarerobertdaniel7), [mariamunteanu1](https://profiles.wordpress.org/mariamunteanu1) -**Tags:** gutenberg blocks, gutenberg, block, post grid block, google map block, columns block, advanced columns, section, row, layout, templates, lottie, progress bar -**Requires at least:** 5.4 -**Tested up to:** 5.7 -**Requires PHP:** 5.4 +**Tags:** gutenberg blocks, gutenberg, block,post grid block, google map block, columns block, advanced columns, section, row, layout, templates, lottie, progress bar +**Requires at least:** 5.4 +**Tested up to:** 5.7 +**Requires PHP:** 5.4 **Stable tag:** trunk **License:** GPLv3 **License URI:** https://www.gnu.org/licenses/gpl-3.0.en.html @@ -90,6 +90,16 @@ Help your site shine with design options built to enhance your brand. Every bloc ## Changelog ## +##### [Version 1.6.2](https://github.com/Codeinwp/otter-blocks/compare/v1.6.1...v1.6.2) (2021-03-26) + +- Fix Button Groups alignment +- Don't enqueue empty CSS +- Adds new Accordion Block +- CPT support to Posts Block + + + + ##### [Version 1.6.1](https://github.com/Codeinwp/otter-blocks/compare/v1.6.0...v1.6.1) (2021-03-02) - Fix CSS Extensions causing Reusable Blocks to crash. diff --git a/readme.txt b/readme.txt index f8e324953..03c3c4071 100644 --- a/readme.txt +++ b/readme.txt @@ -90,6 +90,16 @@ Help your site shine with design options built to enhance your brand. Every bloc == Changelog == +##### [Version 1.6.2](https://github.com/Codeinwp/otter-blocks/compare/v1.6.1...v1.6.2) (2021-03-26) + +- Fix Button Groups alignment +- Don't enqueue empty CSS +- Adds new Accordion Block +- CPT support to Posts Block + + + + ##### [Version 1.6.1](https://github.com/Codeinwp/otter-blocks/compare/v1.6.0...v1.6.1) (2021-03-02) - Fix CSS Extensions causing Reusable Blocks to crash.