Skip to content

Commit

Permalink
Bump Traduttore Registry version to 2.0 (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
ocean90 committed Mar 15, 2019
1 parent fa54753 commit ce443b1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
6 changes: 2 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 <project>``wp traduttore language-pack build <project>`
* `wp traduttore cache clear <project>``wp traduttore project cache clear <project>`
Expand All @@ -27,7 +29,6 @@ Due to the large number of changes in the release it is recommended to update al
* `wp traduttore project info <project>` for information about a project.
* `wp traduttore language-pack list <project>` 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`.

Expand All @@ -51,23 +52,20 @@ 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.

### Changed
* Improve code formatting and inline documentation.

## 2.0.0 - 2018-06-19

### Added
* CLI commands.
* ZIP file generation.
* Translation API.
* Slack notifications.

## 1.0.0 - 2017-05-30

### Added
* Initial release.

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion traduttore.php
Original file line number Diff line number Diff line change
Expand Up @@ -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' ] );
Expand Down

0 comments on commit ce443b1

Please sign in to comment.