From 73add9168a0344611dfb95d5de1ab4edcfc05145 Mon Sep 17 00:00:00 2001 From: Alec Rust Date: Sat, 22 Jul 2023 17:01:08 +0100 Subject: [PATCH] Release 1.9.0 --- CHANGELOG.md | 16 ++++++++++++++++ package-lock.json | 4 ++-- package.json | 2 +- protected-video.php | 4 ++-- readme.txt | 20 +++++++++++++++++--- src/block.json | 2 +- 6 files changed, 39 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 23cd3a5..d776222 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,8 +2,24 @@ All notable changes to this project will be documented in this file. Dates are displayed in UTC. +#### [1.9.0](https://github.com/AlecRust/protected-video/compare/1.8.6...1.9.0) + +- Switch from Yarn to npm, downgrade Prettier to fix prettier-php incompatibility [`6bb7d8b`](https://github.com/AlecRust/protected-video/commit/6bb7d8b9b2cdff2ba6ba255dd130f10a57073294) +- Use wp-scripts to build all block assets [`30e2e81`](https://github.com/AlecRust/protected-video/commit/30e2e8152b8e5b0bb39f4e7908c4e9d03d93e39b) +- Move block build directory from /admin/js to /build [`1aee52a`](https://github.com/AlecRust/protected-video/commit/1aee52a24ecbadf9cde29bccfb2c68d2c50bb379) +- Fix duplicate enqueuing of public JS [`562a197`](https://github.com/AlecRust/protected-video/commit/562a197147bd1746478f8169bcd49ad37a62dd1e) +- Tidy package.json [`0ea705f`](https://github.com/AlecRust/protected-video/commit/0ea705f50bd226c9d1e9efcdc9d64fc8d1734563) +- Fix demo webpack config filename [`ef180d9`](https://github.com/AlecRust/protected-video/commit/ef180d96d6d794dcd610bf4959e8f461bb67c5ea) +- Move get-video-id to main dependencies [`15a8a14`](https://github.com/AlecRust/protected-video/commit/15a8a144d6a6431a029b5adbab5948951e353825) +- Remove now-unnecessary Browserslist config [`a5fc8fe`](https://github.com/AlecRust/protected-video/commit/a5fc8fe73e766a4d3a1d9cdf5c3592623a5c65c3) +- Add "player" to block.json keywords [`3662c8f`](https://github.com/AlecRust/protected-video/commit/3662c8f0aa74f163a3215ab64f4b1f01f3a4a506) +- Update plugin "Tested up to" to WordPress 6.3 [`38eebe9`](https://github.com/AlecRust/protected-video/commit/38eebe911d1107d54eb08f3c02e35b5de4ab4735) +- Add keywords to block.json [`d23ac37`](https://github.com/AlecRust/protected-video/commit/d23ac379d767fa740f83896e2a954e15384b2866) + #### [1.8.6](https://github.com/AlecRust/protected-video/compare/1.8.5...1.8.6) +> 20 July 2023 + - Add custom SVG as block icon [`faac228`](https://github.com/AlecRust/protected-video/commit/faac22893a2ab109561809afbf4c2724f0473b1d) - Improve function name [`38fc561`](https://github.com/AlecRust/protected-video/commit/38fc561746ddae001a527b93e7a32dbe3c2ac997) diff --git a/package-lock.json b/package-lock.json index 0f8881a..c8bbef7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "protected-video", - "version": "1.8.6", + "version": "1.9.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "protected-video", - "version": "1.8.6", + "version": "1.9.0", "license": "GPL-2.0-or-later", "dependencies": { "get-video-id": "^3.6.5", diff --git a/package.json b/package.json index 8f6c252..8172710 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "protected-video", - "version": "1.8.6", + "version": "1.9.0", "description": "YouTube/Vimeo player that prevents easy sharing of the video.", "author": "Alec Rust (https://www.alecrust.com/)", "license": "GPL-2.0-or-later", diff --git a/protected-video.php b/protected-video.php index 8ff9ec2..1050e03 100644 --- a/protected-video.php +++ b/protected-video.php @@ -4,7 +4,7 @@ * Plugin URI: http://github.com/AlecRust/protected-video * GitHub Plugin URI: AlecRust/protected-video * Description: YouTube/Vimeo player that prevents easy sharing of the video. - * Version: 1.8.6 + * Version: 1.9.0 * Author: Alec Rust * Author URI: https://www.alecrust.com/ * Text Domain: protected-video @@ -25,7 +25,7 @@ /** * Plugin version. */ -define('PROTECTED_VIDEO_VERSION', '1.8.6'); +define('PROTECTED_VIDEO_VERSION', '1.9.0'); /** * Load core plugin class defining all hooks. diff --git a/readme.txt b/readme.txt index 456f16e..dfbec87 100644 --- a/readme.txt +++ b/readme.txt @@ -2,8 +2,8 @@ Contributors: alecrust Tags: block, gutenberg, media player, video player, plyr, youtube, vimeo, copyright Requires at least: 4.6 -Tested up to: 6.2 -Stable tag: 1.8.6 +Tested up to: 6.3 +Stable tag: 1.9.0 Requires PHP: 7.0 License: GPL-2.0-or-later License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -112,7 +112,21 @@ This is usually caused by another plugin or theme loading its own version of [Pl == Changelog == -= 1.8.6 = += 1.9.0 = + +* Switch from Yarn to npm, downgrade Prettier to fix prettier-php incompatibility +* Use wp-scripts to build all block assets +* Move block build directory from /admin/js to /build +* Fix duplicate enqueuing of public JS +* Tidy package.json +* Fix demo webpack config filename +* Move get-video-id to main dependencies +* Remove now-unnecessary Browserslist config +* Add "player" to block.json keywords +* Update plugin "Tested up to" to WordPress 6.3 +* Add keywords to block.json + += 1.8.6 - 2023-07-20 = * Add custom SVG as block icon * Improve function name diff --git a/src/block.json b/src/block.json index 0020f1f..3d34ebb 100644 --- a/src/block.json +++ b/src/block.json @@ -2,7 +2,7 @@ "$schema": "https://schemas.wp.org/trunk/block.json", "apiVersion": 3, "name": "protected-video/protected-video", - "version": "1.8.6", + "version": "1.9.0", "title": "Protected Video", "category": "embed", "example": {