diff --git a/CHANGELOG.md b/CHANGELOG.md index c1bd364..3a621af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## [Unreleased] +## [0.4.0] - 2019-04-02 + * Packages names have been lowercased and invalid characters will be removed to prevent errors when Composer 2.0 is released ([#90](https://github.com/cedaro/satispress/issues/90)). This may require updates to `composer.json` if your project requires packages with uppercase characters. * Refactored authentication servers to prevent conflicts with plugins that call `determine_current_user` earlier than expected ([#94](https://github.com/cedaro/satispress/issues/94)). This changes the server interface and will require code updates if you're using custom authentication server. * Introduced a default logger implementation to surface issues in `debug.log` when debug mode is enabled. By default, only messages with a `warning` level or higher will be logged ([#86](https://github.com/cedaro/satispress/issues/86)). @@ -35,7 +37,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.3.2...HEAD +[Unreleased]: https://github.com/cedaro/satispress/compare/v0.4.0...HEAD +[0.4.0]: https://github.com/cedaro/satispress/compare/v0.3.2...v0.4.0 [0.3.2]: https://github.com/cedaro/satispress/compare/v0.3.1...v0.3.2 [0.3.1]: https://github.com/cedaro/satispress/compare/v0.3.0...v0.3.1 [0.3.0]: https://github.com/cedaro/satispress/compare/v0.2.3...v0.3.0 diff --git a/languages/satispress.pot b/languages/satispress.pot index 53f41f8..dda5e71 100644 --- a/languages/satispress.pot +++ b/languages/satispress.pot @@ -2,9 +2,9 @@ # This file is distributed under the GPL-2.0-or-later. msgid "" msgstr "" -"Project-Id-Version: SatisPress 0.3.2\n" +"Project-Id-Version: SatisPress 0.4.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/satispress\n" -"POT-Creation-Date: 2019-02-01 20:51:41+00:00\n" +"POT-Creation-Date: 2019-04-02 16:31:21+00:00\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -12,10 +12,6 @@ msgstr "" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" -#: src/Authentication/UnauthorizedServer.php:57 -msgid "Authentication Required" -msgstr "" - #. Plugin Name of the plugin/theme msgid "SatisPress" msgstr "" @@ -77,18 +73,6 @@ msgstr "" msgid "Choose themes to make available in your SatisPress repository." msgstr "" -#: src/WP_Error/HttpError.php:33 -msgid "Authentication is required for this resource." -msgstr "" - -#: src/WP_Error/HttpError.php:48 -msgid "Invalid credentials." -msgstr "" - -#: src/WP_Error/HttpError.php:63 -msgid "Missing authorization header." -msgstr "" - #: src/functions.php:155 #. translators: %s: documentation URL msgid "" diff --git a/package.json b/package.json index 2bccf5e..a8fe06a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "satispress", - "version": "0.3.2", + "version": "0.4.0", "description": "Generate a Composer repository from installed WordPress plugins and themes.", "repository": { "type": "git", diff --git a/satispress.php b/satispress.php index 3b2f444..0c3342a 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.3.2 + * Version: 0.4.0 * Author: Cedaro * Author URI: https://www.cedaro.com/ * License: GPL-2.0-or-later @@ -37,7 +37,7 @@ * * @var string */ -const VERSION = '0.3.2'; +const VERSION = '0.4.0'; // Load the Composer autoloader. if ( file_exists( __DIR__ . '/vendor/autoload.php' ) ) {