diff --git a/CHANGELOG.md b/CHANGELOG.md index 43d7a1b..ff3c7de 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ All notable changes to this project will be documented in this file, formatted via [this recommendation](https://keepachangelog.com/). +## [1.2.2] - 2021-06-17 +* Fix - PHP notices when invalid files are uploaded. +* Enhancement - Replace jquery.ready with recommended syntax. + ## [1.2.1] - 2021-02-24 * Fix - Correctly load composer autoload. * Enhancement - Add .eps extension to the default list. diff --git a/file-upload-types.php b/file-upload-types.php index 6b142b6..4efc73a 100644 --- a/file-upload-types.php +++ b/file-upload-types.php @@ -2,7 +2,7 @@ /** * Plugin Name: File Upload Types * Description: Easily allow WordPress to accept and upload any file type extension or MIME type, including custom file types. - * Version: 1.2.1 + * Version: 1.2.2 * Author: WPForms * Author URI: https://wpforms.com * Text Domain: file-upload-types @@ -59,7 +59,7 @@ function file_upload_types_deactivate_msg() { */ define( 'FILE_UPLOAD_TYPES_PLUGIN_FILE', __FILE__ ); define( 'FILE_UPLOAD_TYPES_PLUGIN_PATH', dirname( __FILE__ ) ); -define( 'FILE_UPLOAD_TYPES_VERSION', '1.2.1' ); +define( 'FILE_UPLOAD_TYPES_VERSION', '1.2.2' ); require_once __DIR__ . '/vendor/autoload.php'; diff --git a/package-lock.json b/package-lock.json index 0d4ba41..4148239 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "file-upload-types", - "version": "1.2.1", + "version": "1.2.2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 5329b37..379226a 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "file-upload-types", "description": "Manage the types of files that can be uploaded to your WordPress site.", - "version": "1.2.1", + "version": "1.2.2", "homepage": "", "repository": { "type": "git", diff --git a/readme.txt b/readme.txt index 247baed..15c1c42 100644 --- a/readme.txt +++ b/readme.txt @@ -3,7 +3,7 @@ Contributors: wpforms, smub, jaredatch, slaFFik, sanzeeb3 Tags: files, upload, file upload, mime, attachments Requires at least: 4.9 Tested up to: 5.7 -Stable tag: 1.2.1 +Stable tag: 1.2.2 Requires PHP: 5.6 Easily allow WordPress to accept and upload any file type extension or MIME type, including custom file types. @@ -80,10 +80,14 @@ Visit