Skip to content

Commit

Permalink
Release 3.1.0 (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
ocean90 committed Jul 20, 2020
1 parent b20384f commit 4d54530
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 3 deletions.
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.1.0] - 2020-07-20

### Added
* Introduce `traduttore.map_entries_to_source` filter to change the mapping of sources to translation entries. Props @florianbrinkmann. [#170]
* Support `application/x-www-form-urlencoded` as content type for GitHub webhooks. [#166]
* Include file reference in JSON translation files. [#176]

### Fixed
* Fix generating empty language pack ZIP files. Props @florianbrinkmann. [#168]
* Fix compatibility with GlotPress 3.0 and its stricter type checks. [#174]

## [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`.

Expand Down Expand Up @@ -69,8 +80,15 @@ Due to the large number of changes in the release it is recommended to update al
### Added
* Initial release.

[Unreleased]: https://github.com/wearerequired/traduttore/compare/3.0.0...HEAD
[Unreleased]: https://github.com/wearerequired/traduttore/compare/3.1.0...HEAD
[3.1.0]: https://github.com/wearerequired/traduttore/compare/3.0.0...3.1.0
[3.0.0]: https://github.com/wearerequired/traduttore/compare/2.0.3...3.0.0
[2.0.3]: https://github.com/wearerequired/traduttore/compare/2.0.2...2.0.3
[2.0.2]: https://github.com/wearerequired/traduttore/compare/2.0.1...2.0.2
[2.0.1]: https://github.com/wearerequired/traduttore/compare/2.0.0...2.0.1

[#166]: https://github.com/wearerequired/traduttore/issues/166
[#168]: https://github.com/wearerequired/traduttore/issues/168
[#170]: https://github.com/wearerequired/traduttore/issues/170
[#174]: https://github.com/wearerequired/traduttore/issues/174
[#176]: https://github.com/wearerequired/traduttore/issues/176
4 changes: 2 additions & 2 deletions traduttore.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Traduttore
* Plugin URI: https://github.com/wearerequired/traduttore/
* Description: Add WordPress.org-style language pack API to your GlotPress installation for your WordPress projects hosted on GitHub.
* Version: 3.0.0
* Version: 3.1.0
* Author: required
* Author URI: https://required.com
* License: GPL-2.0+
Expand Down Expand Up @@ -42,7 +42,7 @@
return;
}

const VERSION = '3.0.0';
const VERSION = '3.1.0';
const PLUGIN_FILE = __FILE__;

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

0 comments on commit 4d54530

Please sign in to comment.