Skip to content

Commit

Permalink
Release 6.1.3 : Show error if redirect is set but invalid
Browse files Browse the repository at this point in the history
  • Loading branch information
Ugoku committed May 27, 2024
1 parent a508937 commit c40bbd1
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
3 changes: 2 additions & 1 deletion changelog.md
Original file line number Diff line number Diff line change
@@ -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**
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "recras-wordpress-plugin",
"version": "6.1.2",
"version": "6.1.3",
"description": "Recras WordPress plugin",
"main": "index.js",
"directories": {
Expand Down
5 changes: 3 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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**
Expand Down
2 changes: 1 addition & 1 deletion recras-wordpress-plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/Plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit c40bbd1

Please sign in to comment.