diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 35a1a47..16d34d5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,7 +10,7 @@ jobs: strategy: fail-fast: true matrix: - php-versions: [ "7.4", "8.0", "8.1" ] + php-versions: [ "7.4" ] steps: - name: Checkout Repo uses: actions/checkout@v2 diff --git a/CHANGELOG.md b/CHANGELOG.md index c90ce26..7a7bc07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based now on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [3.0.10] — 2022-12-14 + +* Fixed PHP 7.4 support. + ## [3.0.9] — 2022-12-14 * Added PHP 8.1 support. diff --git a/package.json b/package.json index 010bc71..5281e58 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "uploadcare-wordpress", - "version": "3.0.9", + "version": "3.0.10", "devDependencies": { "@wordpress/block-editor": "^10.5.0", "@wordpress/components": "^22.1.0", diff --git a/readme.txt b/readme.txt index f266ab6..81c77ff 100644 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Tags: file upload, cdn, storage, adaptive delivery, responsive, lazy loading, op Requires at least: 5.0 Tested up to: 6.1.1 Requires PHP: 7.4 -Stable tag: 3.0.9 +Stable tag: 3.0.10 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Donate link: https://uploadcare.com/pricing/ @@ -112,6 +112,9 @@ Send us your feedback, == Upgrade Notice == += 3.0.10 = +Fixed PHP 7.4 support. + = 3.0.9 = Minimal PHP version bumped to 7.4. @@ -135,6 +138,10 @@ Access all files in your Uploadcare account via Media Library. == Changelog == += 3.0.10 = + +* Fixed PHP 7.4 support. + = 3.0.9 = * Added support for PHP 8+. diff --git a/uploadcare.php b/uploadcare.php index bf808ff..ef6c97b 100644 --- a/uploadcare.php +++ b/uploadcare.php @@ -9,7 +9,7 @@ * Plugin Name: Uploadcare File Uploader and Adaptive Delivery * Plugin URI: https://github.com/uploadcare/uploadcare-wordpress * Description: Upload and store any file of any size from any device or cloud. No more slow downs when serving your images with automatic responsiviness and lazy loading. Improve your WP performance to boost Customer Experience and SEO. - * Version: 3.0.9 + * Version: 3.0.10 * Author: Uploadcare * Author URI: https://uploadcare.com/ * License: GPL-2.0+ @@ -19,7 +19,7 @@ */ class Uploadcare_Wordpress_Plugin { - public const UPLOADCARE_VERSION = '3.0.9'; + public const UPLOADCARE_VERSION = '3.0.10'; public function __construct() {