Skip to content

Commit

Permalink
Released v1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
benjamminf committed May 15, 2016
1 parent f42dd3c commit 8d32ce6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
## Changelog

#### v1.1.0
- `Added` Blocks now support structure property querying (children, descendants, etc)
- `Improved` Clicking on block tabs no longer toggles the checkbox
- `Improved` Now checks for compatible PHP version on install
- `Fixed` Fixed issue where child blocks weren't being added to the correct block
- `Fixed` Block tab dropdown (when in mobile view) now works on new blocks
- `Fixed` The "+" icon on block buttons is now correctly added to the first button

#### v1.0.2
- `Added` Added ability to get child blocks in the template. This implementation will be deprecated soon in a later release but will remain supported throughout all 1.x versions.

Expand Down
4 changes: 2 additions & 2 deletions neo/NeoPlugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ public function getDescription()

public function getVersion()
{
return '1.0.2';
return '1.1.0';
}

public function getCraftMinimumVersion()
Expand All @@ -37,7 +37,7 @@ public function getPHPMinimumVersion()

public function getSchemaVersion()
{
return '1.0.1';
return '1.1.0';
}

public function getDeveloper()
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "craft-neo",
"version": "1.0.2",
"version": "1.1.0",
"description": "A Matrix-like field type that uses existing fields",
"main": "webpack.config.js",
"scripts": {
Expand Down

0 comments on commit 8d32ce6

Please sign in to comment.