From 491710a56e4140e5654fd68e400940b4fb589110 Mon Sep 17 00:00:00 2001 From: Brady Vercher Date: Wed, 25 Sep 2019 12:36:25 -0700 Subject: [PATCH] Release 0.5.0. --- CHANGELOG.md | 8 +++++++- languages/satispress.pot | 4 ++-- package.json | 2 +- satispress.php | 4 ++-- 4 files changed, 12 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 38125ca..1f4f43f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,13 @@ ## [Unreleased] +## [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) * Removed the `/coverage`, `/docs`, `/dist`, and `/tests` directories from the default excludes. This is a breaking change in the sense that files in those directories will now be included unless they're configured to be excluded via a filter or `.distignore`. See [#103](https://github.com/cedaro/satispress/issues/103) * Added a `.distignore` to exclude development files if SatisPress is added to the repository. +* Delegated the event handler for toggling plugins on the *Manage Plugins* screen to fix a bug preventing plugins from being toggled if the list of plugins had been filtered. See [#107](https://github.com/cedaro/satispress/issues/107) +* Removed internal array keys from the package repository classes to prevent an error when a theme and plugin have the same slug. See [#109](https://github.com/cedaro/satispress/issues/109) ## [0.4.1] - 2019-06-20 @@ -45,7 +50,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.4.1...HEAD +[Unreleased]: https://github.com/cedaro/satispress/compare/v0.5.0...HEAD +[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 [0.3.2]: https://github.com/cedaro/satispress/compare/v0.3.1...v0.3.2 diff --git a/languages/satispress.pot b/languages/satispress.pot index a6a4d2f..8d57dfb 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.4.1\n" +"Project-Id-Version: SatisPress 0.5.0\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/satispress\n" -"POT-Creation-Date: 2019-06-20 18:01:50+00:00\n" +"POT-Creation-Date: 2019-09-25 19:34:12+00:00\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" diff --git a/package.json b/package.json index 41423ed..5d49989 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "satispress", - "version": "0.4.1", + "version": "0.5.0", "description": "Generate a Composer repository from installed WordPress plugins and themes.", "repository": { "type": "git", diff --git a/satispress.php b/satispress.php index 66bfa67..88968f6 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.4.1 + * Version: 0.5.0 * Author: Cedaro * Author URI: https://www.cedaro.com/ * License: GPL-2.0-or-later @@ -37,7 +37,7 @@ * * @var string */ -const VERSION = '0.4.1'; +const VERSION = '0.5.0'; // Load the Composer autoloader. if ( file_exists( __DIR__ . '/vendor/autoload.php' ) ) {