diff --git a/readme.md b/readme.md index e82593a..bddd973 100644 --- a/readme.md +++ b/readme.md @@ -139,6 +139,10 @@ add_filter( 'rs/post_field', 'my_theme_post_field_date_formatting', 10, 5 ); ## Changelog +### 1.3.3 +* Hide mobile menu on desktop if opened before screen size change +* Added Breadcrumbs block + ### 1.3.2 * Fit visibility tooltips to left * Added color support to Post Field block diff --git a/rs-utility-blocks.php b/rs-utility-blocks.php index cd73811..ee1df05 100644 --- a/rs-utility-blocks.php +++ b/rs-utility-blocks.php @@ -2,7 +2,7 @@ /* Plugin Name: RS Utility Blocks Description: Adds custom blocks and utilities to the block editor, including visibility conditions and blocks to display the current user's information or current post's information, and a login form block. -Version: 1.3.2 +Version: 1.3.3 Author: Radley Sustaire Author URI: https://radleysustaire.com GitHub Plugin URI: https://github.com/RadGH/RS-Utility-Blocks @@ -10,7 +10,7 @@ define( 'RS_Utility_Blocks_PATH', __DIR__ ); define( 'RS_Utility_Blocks_URL', plugin_dir_url(__FILE__) ); -define( 'RS_Utility_Blocks_VERSION', '1.3.2' ); +define( 'RS_Utility_Blocks_VERSION', '1.3.3' ); class RS_Utility_Blocks {