diff --git a/CHANGELOG.md b/CHANGELOG.md index dfe8def1..9598e164 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ ## Changelog +#### v1.3.0 +- `Added` Added ability to duplicate blocks +- `Added` Added ability to have blank tabs in block type field layouts +- `Improved` Generating search keywords for Neo fields are now offloaded to a task, dramatically reducing saving time +- `Improved` Blocks now only save if their content has been modified, reducing saving time +- `Improved` Block field templates are now cached for improved rendering performance +- `Improved` Javascript (Babel) polyfills now only load if necessary +- `Fixed` Can now use comparison querying (eg. `'>=3'`) on level property in live preview +- `Fixed` Filtering Neo blocks by `typeId` now works correctly + #### v1.2.1 - `Improved` When editing Neo fields, block types and groups are now inserted after the currently selected item - `Fixed` Added support for Reasons v1.0.4 diff --git a/neo/NeoPlugin.php b/neo/NeoPlugin.php index 65b3f9e9..3ed9a6a2 100644 --- a/neo/NeoPlugin.php +++ b/neo/NeoPlugin.php @@ -22,7 +22,7 @@ public function getDescription() public function getVersion() { - return '1.2.1'; + return '1.3.0'; } public function getCraftMinimumVersion() diff --git a/package.json b/package.json index b4506731..2d1d41bb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "craft-neo", - "version": "1.2.1", + "version": "1.3.0", "description": "A Matrix-like field type that uses existing fields", "main": "webpack.config.js", "scripts": {