diff --git a/CHANGELOG.md b/CHANGELOG.md index 89d8139..da8a769 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ ## [Unreleased] +## [1.0.2] - 2021-7-27 + +* Fixed a parse error in the Envato Market integration. +* Skipped releases without a SemVer compliant version string in the Composer repository transformer to prevent fatal errors. [See #160](https://github.com/cedaro/satispress/issues/160). Props [@DavidSingh3](https://github.com/DavidSingh3) +* Removed the trace from `\SatisPress\Logger\format_exception()` to prevent fatal errors. + ## [1.0.1] - 2021-04-12 * Fixed the validation logic in the hidden directory validator and updated the test. See [#142](https://github.com/cedaro/satispress/issues/142). Props [@patrick-leb](https://github.com/patrick-leb) for troubleshooting and help in resolving this issue. @@ -107,7 +113,8 @@ Major changes include: * [Capabilities](docs/security.md#capabilities) were added for viewing and downloading packages, as well as managing SatisPress options. Only administrators have access by default. * The storage layer was abstracted to make it swappable. -[Unreleased]: https://github.com/cedaro/satispress/compare/v1.0.1...HEAD +[Unreleased]: https://github.com/cedaro/satispress/compare/v1.0.2...HEAD +[1.0.2]: https://github.com/cedaro/satispress/compare/v1.0.1...v1.0.2 [1.0.1]: https://github.com/cedaro/satispress/compare/v1.0.0...v1.0.1 [1.0.0]: https://github.com/cedaro/satispress/compare/v0.7.2...v1.0.0 [0.7.2]: https://github.com/cedaro/satispress/compare/v0.7.1...v0.7.2 diff --git a/languages/satispress.pot b/languages/satispress.pot index 190b278..20be3cd 100644 --- a/languages/satispress.pot +++ b/languages/satispress.pot @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0-or-later. msgid "" msgstr "" -"Project-Id-Version: SatisPress 1.0.1\n" +"Project-Id-Version: SatisPress 1.0.2\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/satispress\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2021-04-12T17:33:51+00:00\n" +"POT-Creation-Date: 2021-07-27T17:18:30+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.4.0\n" "X-Domain: satispress\n" diff --git a/package.json b/package.json index ceb97d4..2ce35fd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "satispress", - "version": "1.0.1", + "version": "1.0.2", "description": "Generate a Composer repository from installed WordPress plugins and themes.", "repository": { "type": "git", diff --git a/satispress.php b/satispress.php index fd26201..3fbfab4 100644 --- a/satispress.php +++ b/satispress.php @@ -10,7 +10,7 @@ * Plugin Name: SatisPress * Plugin URI: https://github.com/cedaro/satispress * Description: Generate a Composer repository from installed WordPress plugins and themes. - * Version: 1.0.1 + * Version: 1.0.2 * Author: Cedaro * Author URI: https://www.cedaro.com/ * License: GPL-2.0-or-later @@ -37,7 +37,7 @@ * * @var string */ -const VERSION = '1.0.1'; +const VERSION = '1.0.2'; // Load the Composer autoloader. if ( file_exists( __DIR__ . '/vendor/autoload.php' ) ) {