From af196ed5cab5cb2f2c51487788a8ca7df8d06bdd Mon Sep 17 00:00:00 2001 From: Brady Vercher Date: Tue, 3 Mar 2020 12:35:09 -0800 Subject: [PATCH] Release 0.5.1. --- CHANGELOG.md | 11 ++++++++++- languages/satispress.pot | 8 ++++---- package.json | 2 +- satispress.php | 4 ++-- 4 files changed, 17 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f4f43f..4623b77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,14 @@ ## [Unreleased] +## [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). +* Prevented a fatal error in the authentication provider when URLs couldn't be parsed [#122](https://github.com/cedaro/satispress/pull/122). Props [@BrianHenryIE](https://github.com/BrianHenryIE) +* Handled cases when the server doesn't define the request method to prevent a notice [#122](https://github.com/cedaro/satispress/pull/122). Props [@BrianHenryIE](https://github.com/BrianHenryIE) +* Allowed settings to be saved when SatisPress is used in multisite mode [#119](https://github.com/cedaro/satispress/issues/119). +* Removed a couple of dead or superfluous lines of code. + ## [0.5.0] - 2019-09-25 * Added the `.` (dot) character to the list of allowed characters for package slugs. See [#108](https://github.com/cedaro/satispress/issues/108) @@ -50,7 +58,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.0...HEAD +[Unreleased]: https://github.com/cedaro/satispress/compare/v0.5.1...HEAD +[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 [0.4.0]: https://github.com/cedaro/satispress/compare/v0.3.2...v0.4.0 diff --git a/languages/satispress.pot b/languages/satispress.pot index 8d57dfb..9ba0c7b 100644 --- a/languages/satispress.pot +++ b/languages/satispress.pot @@ -1,14 +1,14 @@ -# Copyright (C) 2019 Cedaro +# Copyright (C) 2020 Cedaro # This file is distributed under the GPL-2.0-or-later. msgid "" msgstr "" -"Project-Id-Version: SatisPress 0.5.0\n" +"Project-Id-Version: SatisPress 0.5.1\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/satispress\n" -"POT-Creation-Date: 2019-09-25 19:34:12+00:00\n" +"POT-Creation-Date: 2020-03-03 20:34:48+00:00\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2020-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/package.json b/package.json index 5d49989..d24ef03 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "satispress", - "version": "0.5.0", + "version": "0.5.1", "description": "Generate a Composer repository from installed WordPress plugins and themes.", "repository": { "type": "git", diff --git a/satispress.php b/satispress.php index 88968f6..5dac6d9 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: 0.5.0 + * Version: 0.5.1 * Author: Cedaro * Author URI: https://www.cedaro.com/ * License: GPL-2.0-or-later @@ -37,7 +37,7 @@ * * @var string */ -const VERSION = '0.5.0'; +const VERSION = '0.5.1'; // Load the Composer autoloader. if ( file_exists( __DIR__ . '/vendor/autoload.php' ) ) {