diff --git a/CHANGELOG.md b/CHANGELOG.md index 6b2e04d1..56f8b4be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,10 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [3.0.0] - 2019-03-15 Due to the large number of changes in the release it is recommended to update all of the language packs. This can be done with the WP-CLI command `wp traduttore language-pack build --all`. + ### Changed * Heavy architectural changes to make the plugin more modular. * All filters and actions now use `.` as the separator between the prefix and hook name instead of `_`. * Scheduling of cron events to reduce number of unnecessary builds and updates. +* Bump Traduttore Registry version to 2.0. * Existing WP-CLI commands: * `wp traduttore build ` → `wp traduttore language-pack build ` * `wp traduttore cache clear ` → `wp traduttore project cache clear ` @@ -27,7 +29,6 @@ Due to the large number of changes in the release it is recommended to update al * `wp traduttore project info ` for information about a project. * `wp traduttore language-pack list ` for listing all language packs in a project. - ### Deprecated * The REST API route `github-webhook/v1/push-event` for incoming webhooks is replaced by `traduttore/v1/incoming-webhook`. @@ -51,7 +52,6 @@ Due to the large number of changes in the release it is recommended to update al * Make sure `wp_tempnam()` is always available. ## [2.0.1] - 2018-06-21 - ### Fixed * Fix a possible fatal error in the project locator class. @@ -59,7 +59,6 @@ Due to the large number of changes in the release it is recommended to update al * Improve code formatting and inline documentation. ## 2.0.0 - 2018-06-19 - ### Added * CLI commands. * ZIP file generation. @@ -67,7 +66,6 @@ Due to the large number of changes in the release it is recommended to update al * Slack notifications. ## 1.0.0 - 2017-05-30 - ### Added * Initial release. diff --git a/composer.json b/composer.json index 9da8c7d6..ce2997a7 100644 --- a/composer.json +++ b/composer.json @@ -30,7 +30,7 @@ "require": { "php": ">=7.1", "ext-zip": "*", - "wearerequired/traduttore-registry": "^1.0" + "wearerequired/traduttore-registry": "^2.0" }, "require-dev": { "dealerdirect/phpcodesniffer-composer-installer": "^0.5", diff --git a/traduttore.php b/traduttore.php index da1cfbd2..300078f1 100644 --- a/traduttore.php +++ b/traduttore.php @@ -43,7 +43,7 @@ return; } -define( __NAMESPACE__ . '\VERSION', '3.0.0-alpha' ); +define( __NAMESPACE__ . '\VERSION', '3.0.0' ); define( __NAMESPACE__ . '\PLUGIN_FILE', __FILE__ ); register_deactivation_hook( __FILE__, [ Plugin::class, 'on_plugin_deactivation' ] );