Skip to content

Commit

Permalink
Fixed php 7.4 support (#97)
Browse files Browse the repository at this point in the history
* Fixed php 7.4 support

* Update CHANGELOG.md

Co-authored-by: Roman Sedykh <[email protected]>

Co-authored-by: Roman Sedykh <[email protected]>
  • Loading branch information
dillix and rsedykh committed Dec 21, 2022
1 parent 6491fd1 commit a375ce2
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
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": "uploadcare-wordpress",
"version": "3.0.9",
"version": "3.0.10",
"devDependencies": {
"@wordpress/block-editor": "^10.5.0",
"@wordpress/components": "^22.1.0",
Expand Down
9 changes: 8 additions & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down Expand Up @@ -112,6 +112,9 @@ Send us your feedback, <[email protected]>

== Upgrade Notice ==

= 3.0.10 =
Fixed PHP 7.4 support.

= 3.0.9 =
Minimal PHP version bumped to 7.4.

Expand All @@ -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+.
Expand Down
4 changes: 2 additions & 2 deletions uploadcare.php
Original file line number Diff line number Diff line change
Expand Up @@ -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+
Expand All @@ -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()
{
Expand Down

0 comments on commit a375ce2

Please sign in to comment.