diff --git a/CHANGELOG.md b/CHANGELOG.md index e9e9943..0866a5b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,11 @@ ## [Unreleased] +## [1.0.4] - 2022-05-02 + +* Allowed SatisPress dependencies to require `composer/installers` version 1 or 2. Props [@LucasDemea](https://github.com/LucasDemea) +* Removed `node_modules` from the list of directories to be automatically excluded for cases where a package depends on it existing. Props [@tyrann0us](https://github.com/tyrann0us) + ## [1.0.3] - 2022-01-07 * Added a search field in the package selector sidebar. Props [@DavidSingh3](https://github.com/DavidSingh3) @@ -119,7 +124,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.3...HEAD +[Unreleased]: https://github.com/cedaro/satispress/compare/v1.0.4...HEAD +[1.0.4]: https://github.com/cedaro/satispress/compare/v1.0.3...v1.0.4 [1.0.3]: https://github.com/cedaro/satispress/compare/v1.0.2...v1.0.3 [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 diff --git a/languages/satispress.pot b/languages/satispress.pot index 60b0542..ce4300d 100644 --- a/languages/satispress.pot +++ b/languages/satispress.pot @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0-or-later. msgid "" msgstr "" -"Project-Id-Version: SatisPress 1.0.3\n" +"Project-Id-Version: SatisPress 1.0.4\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/satispress\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2022-01-07T18:01:37+00:00\n" +"POT-Creation-Date: 2022-05-02T15:48:24+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.5.0\n" "X-Domain: satispress\n" diff --git a/package.json b/package.json index 8832ed8..3cdd1b1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "satispress", - "version": "1.0.3", + "version": "1.0.4", "description": "Generate a Composer repository from installed WordPress plugins and themes.", "repository": { "type": "git", diff --git a/satispress.php b/satispress.php index 6f37437..71951a0 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: 1.0.3 + * Version: 1.0.4 * Author: Cedaro * Author URI: https://www.cedaro.com/ * License: GPL-2.0-or-later @@ -37,7 +37,7 @@ * * @var string */ -const VERSION = '1.0.3'; +const VERSION = '1.0.4'; // Load the Composer autoloader. if ( file_exists( __DIR__ . '/vendor/autoload.php' ) ) {