Skip to content

Commit ce443b1

Browse files
authored
Bump Traduttore Registry version to 2.0 (#160)
1 parent fa54753 commit ce443b1

3 files changed

Lines changed: 4 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [3.0.0] - 2019-03-15
88
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`.
9+
910
### Changed
1011
* Heavy architectural changes to make the plugin more modular.
1112
* All filters and actions now use `.` as the separator between the prefix and hook name instead of `_`.
1213
* Scheduling of cron events to reduce number of unnecessary builds and updates.
14+
* Bump Traduttore Registry version to 2.0.
1315
* Existing WP-CLI commands:
1416
* `wp traduttore build <project>``wp traduttore language-pack build <project>`
1517
* `wp traduttore cache clear <project>``wp traduttore project cache clear <project>`
@@ -27,7 +29,6 @@ Due to the large number of changes in the release it is recommended to update al
2729
* `wp traduttore project info <project>` for information about a project.
2830
* `wp traduttore language-pack list <project>` for listing all language packs in a project.
2931

30-
3132
### Deprecated
3233
* The REST API route `github-webhook/v1/push-event` for incoming webhooks is replaced by `traduttore/v1/incoming-webhook`.
3334

@@ -51,23 +52,20 @@ Due to the large number of changes in the release it is recommended to update al
5152
* Make sure `wp_tempnam()` is always available.
5253

5354
## [2.0.1] - 2018-06-21
54-
5555
### Fixed
5656
* Fix a possible fatal error in the project locator class.
5757

5858
### Changed
5959
* Improve code formatting and inline documentation.
6060

6161
## 2.0.0 - 2018-06-19
62-
6362
### Added
6463
* CLI commands.
6564
* ZIP file generation.
6665
* Translation API.
6766
* Slack notifications.
6867

6968
## 1.0.0 - 2017-05-30
70-
7169
### Added
7270
* Initial release.
7371

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
"require": {
3131
"php": ">=7.1",
3232
"ext-zip": "*",
33-
"wearerequired/traduttore-registry": "^1.0"
33+
"wearerequired/traduttore-registry": "^2.0"
3434
},
3535
"require-dev": {
3636
"dealerdirect/phpcodesniffer-composer-installer": "^0.5",

traduttore.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
return;
4444
}
4545

46-
define( __NAMESPACE__ . '\VERSION', '3.0.0-alpha' );
46+
define( __NAMESPACE__ . '\VERSION', '3.0.0' );
4747
define( __NAMESPACE__ . '\PLUGIN_FILE', __FILE__ );
4848

4949
register_deactivation_hook( __FILE__, [ Plugin::class, 'on_plugin_deactivation' ] );

0 commit comments

Comments
 (0)