diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f60311..6321d82 100755 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ All notable changes to the Workflow Extend Bundle will be documented in this file. +## [1.1.1] - 2023-11-03 +- Add support for `pimcore/asset-metadata-class-definitions:~2.0` + ## [1.1.0] - 2023-04-06 - Added ID to place settings diff --git a/composer.json b/composer.json index 251e1c4..f56c61f 100755 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "studio1/workflow-extend", "type": "pimcore-bundle", - "description": "This bundles extends pimcores workflow engine and workflow designer with additional features.", + "description": "This bundles extends Pimcore's workflow engine and workflow designer with additional features.", "license": "GPL-3.0-or-later", "homepage": "https://github.com/studio1gmbh/pimcore-workflow-extend", "config": { @@ -37,7 +37,7 @@ "require": { "pimcore/pimcore": "^10.0", "cweagans/composer-patches": "~1.0", - "pimcore/asset-metadata-class-definitions": "~1.2", + "pimcore/asset-metadata-class-definitions": "~1.2 || ~2.0", "pimcore/workflow-designer": "~1.0", "php": "^8.0" } diff --git a/src/WorkflowExtendBundle.php b/src/WorkflowExtendBundle.php index b30d1be..1c6fa10 100755 --- a/src/WorkflowExtendBundle.php +++ b/src/WorkflowExtendBundle.php @@ -70,6 +70,6 @@ public function getNiceName() */ public function getVersion() { - return '1.1.0'; + return '1.1.1'; } }