Skip to content

Commit

Permalink
Release 1.0.4.
Browse files Browse the repository at this point in the history
  • Loading branch information
bradyvercher committed May 2, 2022
1 parent 1d3001a commit aca4948
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]

## [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)
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions languages/satispress.pot
Original file line number Diff line number Diff line change
Expand Up @@ -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 <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <[email protected]>\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"
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": "1.0.3",
"version": "1.0.4",
"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: 1.0.3
* Version: 1.0.4
* Author: Cedaro
* Author URI: https://www.cedaro.com/
* License: GPL-2.0-or-later
Expand All @@ -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' ) ) {
Expand Down

0 comments on commit aca4948

Please sign in to comment.