Skip to content

Commit

Permalink
Release 1.0.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
bradyvercher committed Jul 27, 2021
1 parent 7685fcb commit 507efd9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 6 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions languages/satispress.pot
Original file line number Diff line number Diff line change
Expand Up @@ -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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\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"
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
4 changes: 2 additions & 2 deletions satispress.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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' ) ) {
Expand Down

0 comments on commit 507efd9

Please sign in to comment.