diff --git a/changelog.md b/changelog.md index 6e1375b9..f007bd99 100644 --- a/changelog.md +++ b/changelog.md @@ -1,7 +1,8 @@ # Changelog -## Unreleased (2024-05-xx) +## 6.1.3 (2024-05-27) * Show error if redirect is set but invalid +* Small technical update ## 6.1.2 (2024-05-06) * **No functional changes compared to 6.1.1** diff --git a/package-lock.json b/package-lock.json index 90370026..8db6d17f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "recras-wordpress-plugin", - "version": "6.1.2", + "version": "6.1.3", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "recras-wordpress-plugin", - "version": "6.1.2", + "version": "6.1.3", "license": "MIT", "devDependencies": { "po2json": "1.0.0-beta-3" diff --git a/package.json b/package.json index d6d7275e..0f0347e9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "recras-wordpress-plugin", - "version": "6.1.2", + "version": "6.1.3", "description": "Recras WordPress plugin", "main": "index.js", "directories": { diff --git a/readme.txt b/readme.txt index b4c31d78..5b76499d 100644 --- a/readme.txt +++ b/readme.txt @@ -2,7 +2,7 @@ Contributors: zanderz Tags: recras, recreation, reservation, booking, voucher Tested up to: 6.5 -Stable tag: 6.1.2 +Stable tag: 6.1.3 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -80,8 +80,9 @@ No. "Must use" plugins don't appear in the update notifications nor show their u == Changelog == -= Unreleased = += 6.1.3 = * Show error if redirect is set but invalid +* Small technical update = 6.1.2 = * **No functional changes compared to 6.1.1** diff --git a/recras-wordpress-plugin.php b/recras-wordpress-plugin.php index 3ea8c43b..2b583dad 100644 --- a/recras-wordpress-plugin.php +++ b/recras-wordpress-plugin.php @@ -2,7 +2,7 @@ /* Plugin Name: Recras WordPress Plugin Plugin URI: https://www.recras.nl/ -Version: 6.1.2 +Version: 6.1.3 Description: Easily integrate your Recras data into your own site Requires at least: 6.3 Requires PHP: 7.3.0 diff --git a/src/Plugin.php b/src/Plugin.php index 351cab16..e1afe25b 100644 --- a/src/Plugin.php +++ b/src/Plugin.php @@ -304,7 +304,7 @@ public function loadScripts(): void // Generic functionality & localisation script $scriptName = 'recras-frontend'; - wp_register_script($scriptName, $this->baseUrl . '/js/recras.js', ['jquery'], '4.1.5', true); + wp_register_script($scriptName, $this->baseUrl . '/js/recras.js', ['jquery'], '6.1.2', true); wp_localize_script($scriptName, 'recras_l10n', $localisation); wp_enqueue_script($scriptName); }