diff --git a/CHANGELOG.md b/CHANGELOG.md index 1862682..243502a 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.8] — 2022-01-24 + +* Removed types from method (bug fix for https://wordpress.org/support/topic/fatal-error-3-0-7/). + ## [3.0.7] — 2021-08-20 * Changed plugin responsive images default mechanism to leverage default WordPress "srcset" behavior improved with our smart image quality and auto format features. diff --git a/readme.txt b/readme.txt index 7c2e6c9..97514e0 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: 5.7.2 Requires PHP: 7.1 -Stable tag: 3.0.7 +Stable tag: 3.0.8 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html Donate link: https://uploadcare.com/pricing/ @@ -132,6 +132,10 @@ Access all files in your Uploadcare account via Media Library. == Changelog == += 3.0.8 + +* Removed types from method (bug fix for https://wordpress.org/support/topic/fatal-error-3-0-7/). + = 3.0.7 = * Changed plugin responsive images default mechanism to leverage default WordPress "srcset" behavior improved with our smart image quality and auto format features. diff --git a/uploadcare.php b/uploadcare.php index 76ff116..03bead5 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.7 + * Version: 3.0.8 * 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.7'; + public const UPLOADCARE_VERSION = '3.0.8'; public function __construct() {