Skip to content

Commit

Permalink
v3.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nk-o committed Mar 21, 2024
1 parent 368d86b commit f67f35c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to this project will be documented in this file.

= 3.6.1 - Mar 21, 2024 =

* reverted the code for validating HTML as it does more harm than good. In the next update, we will need to add error handlers in JS instead of trying to validate HTML inside PHP.

= 3.6.0 - Mar 15, 2024 =

PRO plugin:
Expand Down
4 changes: 2 additions & 2 deletions lazy-blocks.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
/**
* Plugin Name: Lazy Blocks
* Description: Gutenberg blocks visual constructor. Custom meta fields or blocks with output without hard coding.
* Version: 3.6.0
* Version: 3.6.1
* Author: Lazy Blocks Team
* Author URI: https://www.lazyblocks.com/?utm_source=wordpress.org&utm_medium=readme&utm_campaign=byline
* License: GPLv2 or later
Expand All @@ -17,7 +17,7 @@
}

if ( ! defined( 'LAZY_BLOCKS_VERSION' ) ) {
define( 'LAZY_BLOCKS_VERSION', '3.6.0' );
define( 'LAZY_BLOCKS_VERSION', '3.6.1' );
}

if ( ! class_exists( 'LazyBlocks' ) ) :
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lazy-blocks",
"title": "Lazy Blocks",
"version": "3.6.0",
"version": "3.6.1",
"description": "No hassle Gutenberg blocks for WordPress developers",
"license": "GPL-2.0",
"author": "Lazy Blocks Team <https://www.lazyblocks.com/>",
Expand Down
6 changes: 5 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
* Requires at least: 6.2
* Tested up to: 6.5
* Requires PHP: 7.2
* Stable tag: 3.6.0
* Stable tag: 3.6.1
* License: GPLv2 or later
* License URI: <http://www.gnu.org/licenses/gpl-2.0.html>

Expand Down Expand Up @@ -136,6 +136,10 @@ The manual installation method involves downloading our Lazy Blocks plugin and u

## Changelog

= 3.6.1 - Mar 21, 2024 =

* reverted the code for validating HTML as it does more harm than good. In the next update, we will need to add error handlers in JS instead of trying to validate HTML inside PHP.

= 3.6.0 - Mar 15, 2024 =

PRO plugin:
Expand Down

0 comments on commit f67f35c

Please sign in to comment.