Skip to content

Commit

Permalink
Release 3.2.0 (#228)
Browse files Browse the repository at this point in the history
* Release 3.2.0

* Update changelog
  • Loading branch information
ocean90 authored Jan 18, 2022
1 parent 7dfb3d3 commit 65e08d6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
8 changes: 6 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,16 @@ 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).

## [Unreleased]
## [3.2.0] - 2022-01-18

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

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

## [3.1.0] - 2020-07-20

Expand Down Expand Up @@ -89,7 +91,8 @@ 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.1.0...HEAD
[Unreleased]: https://github.com/wearerequired/traduttore/compare/3.2.0...HEAD
[3.2.0]: https://github.com/wearerequired/traduttore/compare/3.1.0...3.2.0
[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
Expand All @@ -104,3 +107,4 @@ Due to the large number of changes in the release it is recommended to update al
[#187]: https://github.com/wearerequired/traduttore/issues/187
[#206]: https://github.com/wearerequired/traduttore/issues/206
[#225]: https://github.com/wearerequired/traduttore/issues/225
[#217]: https://github.com/wearerequired/traduttore/issues/217
7 changes: 4 additions & 3 deletions traduttore.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,16 @@
* 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.2.0-alpha
* Version: 3.2.0
* Author: required
* Author URI: https://required.com
* License: GPL-2.0+
* License URI: http://www.gnu.org/licenses/gpl-2.0.txt
* Text Domain: traduttore
* Domain Path: /languages
* Update URI: false
*
* Copyright (c) 2017-2020 required (email: [email protected])
* Copyright (c) 2017-2022 required (email: [email protected])
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License, version 2 or, at
Expand Down Expand Up @@ -42,7 +43,7 @@
return;
}

const VERSION = '3.2.0-alpha';
const VERSION = '3.2.0';
const PLUGIN_FILE = __FILE__;

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

0 comments on commit 65e08d6

Please sign in to comment.