From 3ff7ffe56f32b9b744dff0fba23b2fc0beff4d76 Mon Sep 17 00:00:00 2001 From: Brady Vercher Date: Fri, 1 Feb 2019 13:10:01 -0800 Subject: [PATCH] Release 0.3.2. --- CHANGELOG.md | 5 +++++ languages/satispress.pot | 8 ++++---- package.json | 2 +- satispress.php | 4 ++-- 4 files changed, 12 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f9f475..00aa116 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## [Unreleased] +## [0.3.2] - 2019-02-01 + +* Improved the method for discovering package updates to make caching more reliable. + ## [0.3.1] - 2018-12-19 * Displayed an admin notice and prevented SatisPress from loading if required dependencies were missing ([#76](https://github.com/cedaro/satispress/issues/76)). @@ -23,5 +27,6 @@ Major changes include: * The storage layer was abstracted to make it swappable. [Unreleased]: https://github.com/cedaro/satispress/compare/v0.3.1...HEAD +[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 42279c2..53f41f8 100644 --- a/languages/satispress.pot +++ b/languages/satispress.pot @@ -1,14 +1,14 @@ -# Copyright (C) 2018 Cedaro +# Copyright (C) 2019 Cedaro # This file is distributed under the GPL-2.0-or-later. msgid "" msgstr "" -"Project-Id-Version: SatisPress 0.3.1\n" +"Project-Id-Version: SatisPress 0.3.2\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/satispress\n" -"POT-Creation-Date: 2018-12-19 18:32:24+00:00\n" +"POT-Creation-Date: 2019-02-01 20:51:41+00:00\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n" +"PO-Revision-Date: 2019-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/package.json b/package.json index ea6e810..2bccf5e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "satispress", - "version": "0.3.1", + "version": "0.3.2", "description": "Generate a Composer repository from installed WordPress plugins and themes.", "repository": { "type": "git", diff --git a/satispress.php b/satispress.php index 5a04d5e..b6a1ffe 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.1 + * Version: 0.3.2 * Author: Cedaro * Author URI: https://www.cedaro.com/ * License: GPL-2.0-or-later @@ -37,7 +37,7 @@ * * @var string */ -const VERSION = '0.3.1'; +const VERSION = '0.3.2'; // Load the Composer autoloader. if ( file_exists( __DIR__ . '/vendor/autoload.php' ) ) {