Skip to content

Commit

Permalink
Release 0.5.2.
Browse files Browse the repository at this point in the history
  • Loading branch information
bradyvercher committed Dec 1, 2020
1 parent 0ccff6a commit 10c1db8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## [Unreleased]

## [0.5.2] - 2020-12-01

* Cast meta keys to strings in `SatisPress\Authentication\ApiKey\ApiKeyRepository::find_for_user()` to prevent fatal errors in some situations [#133](https://github.com/cedaro/satispress/issues/133).
* Fixed a fatal error when `wp_parse_url()` returned `null` [#135](https://github.com/cedaro/satispress/pull/135). Props [@danielbachhuber](https://github.com/danielbachhuber)

## [0.5.1] - 2020-03-03

* Stopped throwing authentication exceptions when `WP_DEBUG` is enabled so HTTP challenge headers could be sent and allow clients to display a login prompt. [#105](https://github.com/cedaro/satispress/issues/105).
Expand Down Expand Up @@ -58,7 +63,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/v0.5.1...HEAD
[Unreleased]: https://github.com/cedaro/satispress/compare/v0.5.2...HEAD
[0.5.2]: https://github.com/cedaro/satispress/compare/v0.5.1...v0.5.2
[0.5.1]: https://github.com/cedaro/satispress/compare/v0.5.0...v0.5.1
[0.5.0]: https://github.com/cedaro/satispress/compare/v0.4.1...v0.5.0
[0.4.1]: https://github.com/cedaro/satispress/compare/v0.4.0...v0.4.1
Expand Down
4 changes: 2 additions & 2 deletions languages/satispress.pot
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
# This file is distributed under the GPL-2.0-or-later.
msgid ""
msgstr ""
"Project-Id-Version: SatisPress 0.5.1\n"
"Project-Id-Version: SatisPress 0.5.2\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/satispress\n"
"POT-Creation-Date: 2020-03-03 20:34:48+00:00\n"
"POT-Creation-Date: 2020-12-01 19:36:18+00:00\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\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": "0.5.1",
"version": "0.5.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: 0.5.1
* Version: 0.5.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 = '0.5.1';
const VERSION = '0.5.2';

// Load the Composer autoloader.
if ( file_exists( __DIR__ . '/vendor/autoload.php' ) ) {
Expand Down

0 comments on commit 10c1db8

Please sign in to comment.