Skip to content

Commit 65e08d6

Browse files
authored
Release 3.2.0 (#228)
* Release 3.2.0 * Update changelog
1 parent 7dfb3d3 commit 65e08d6

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,16 @@ 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-
## [Unreleased]
7+
## [3.2.0] - 2022-01-18
88

99
### Changed
1010
* Make project locator more strict when matching paths with existing data to prevent false positives. [#187]
1111

1212
### Fixed
1313
* Don't create JSON translation files for JavaScript source files. [#206]
1414
* Fix file check for `mergeWith` option. [#225]
15+
* GitLab: Use the correct `visibility_level` value for public repos. [#217]
16+
* GitLab: URL-encode the project name for the public repo check. [#217]
1517

1618
## [3.1.0] - 2020-07-20
1719

@@ -89,7 +91,8 @@ Due to the large number of changes in the release it is recommended to update al
8991
### Added
9092
* Initial release.
9193

92-
[Unreleased]: https://github.com/wearerequired/traduttore/compare/3.1.0...HEAD
94+
[Unreleased]: https://github.com/wearerequired/traduttore/compare/3.2.0...HEAD
95+
[3.2.0]: https://github.com/wearerequired/traduttore/compare/3.1.0...3.2.0
9396
[3.1.0]: https://github.com/wearerequired/traduttore/compare/3.0.0...3.1.0
9497
[3.0.0]: https://github.com/wearerequired/traduttore/compare/2.0.3...3.0.0
9598
[2.0.3]: https://github.com/wearerequired/traduttore/compare/2.0.2...2.0.3
@@ -104,3 +107,4 @@ Due to the large number of changes in the release it is recommended to update al
104107
[#187]: https://github.com/wearerequired/traduttore/issues/187
105108
[#206]: https://github.com/wearerequired/traduttore/issues/206
106109
[#225]: https://github.com/wearerequired/traduttore/issues/225
110+
[#217]: https://github.com/wearerequired/traduttore/issues/217

traduttore.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,16 @@
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.2.0-alpha
6+
* Version: 3.2.0
77
* Author: required
88
* Author URI: https://required.com
99
* License: GPL-2.0+
1010
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
1111
* Text Domain: traduttore
1212
* Domain Path: /languages
13+
* Update URI: false
1314
*
14-
* Copyright (c) 2017-2020 required (email: [email protected])
15+
* Copyright (c) 2017-2022 required (email: [email protected])
1516
*
1617
* This program is free software; you can redistribute it and/or modify
1718
* it under the terms of the GNU General Public License, version 2 or, at
@@ -42,7 +43,7 @@
4243
return;
4344
}
4445

45-
const VERSION = '3.2.0-alpha';
46+
const VERSION = '3.2.0';
4647
const PLUGIN_FILE = __FILE__;
4748

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

0 commit comments

Comments
 (0)