Skip to content

Commit 4d54530

Browse files
authored
Release 3.1.0 (#184)
1 parent b20384f commit 4d54530

File tree

2 files changed

+21
-3
lines changed

2 files changed

+21
-3
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [3.1.0] - 2020-07-20
8+
9+
### Added
10+
* Introduce `traduttore.map_entries_to_source` filter to change the mapping of sources to translation entries. Props @florianbrinkmann. [#170]
11+
* Support `application/x-www-form-urlencoded` as content type for GitHub webhooks. [#166]
12+
* Include file reference in JSON translation files. [#176]
13+
14+
### Fixed
15+
* Fix generating empty language pack ZIP files. Props @florianbrinkmann. [#168]
16+
* Fix compatibility with GlotPress 3.0 and its stricter type checks. [#174]
17+
718
## [3.0.0] - 2019-03-15
819
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`.
920

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

72-
[Unreleased]: https://github.com/wearerequired/traduttore/compare/3.0.0...HEAD
83+
[Unreleased]: https://github.com/wearerequired/traduttore/compare/3.1.0...HEAD
84+
[3.1.0]: https://github.com/wearerequired/traduttore/compare/3.0.0...3.1.0
7385
[3.0.0]: https://github.com/wearerequired/traduttore/compare/2.0.3...3.0.0
7486
[2.0.3]: https://github.com/wearerequired/traduttore/compare/2.0.2...2.0.3
7587
[2.0.2]: https://github.com/wearerequired/traduttore/compare/2.0.1...2.0.2
7688
[2.0.1]: https://github.com/wearerequired/traduttore/compare/2.0.0...2.0.1
89+
90+
[#166]: https://github.com/wearerequired/traduttore/issues/166
91+
[#168]: https://github.com/wearerequired/traduttore/issues/168
92+
[#170]: https://github.com/wearerequired/traduttore/issues/170
93+
[#174]: https://github.com/wearerequired/traduttore/issues/174
94+
[#176]: https://github.com/wearerequired/traduttore/issues/176

traduttore.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Traduttore
44
* Plugin URI: https://github.com/wearerequired/traduttore/
55
* Description: Add WordPress.org-style language pack API to your GlotPress installation for your WordPress projects hosted on GitHub.
6-
* Version: 3.0.0
6+
* Version: 3.1.0
77
* Author: required
88
* Author URI: https://required.com
99
* License: GPL-2.0+
@@ -42,7 +42,7 @@
4242
return;
4343
}
4444

45-
const VERSION = '3.0.0';
45+
const VERSION = '3.1.0';
4646
const PLUGIN_FILE = __FILE__;
4747

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

0 commit comments

Comments
 (0)