Skip to content

Commit 8bdb426

Browse files
Bump to v2.5.0
1 parent e5f9c2c commit 8bdb426

7 files changed

+22
-15
lines changed
File renamed without changes.
File renamed without changes.

changelog.txt

+10
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
This file contains only old changelog. See readme.txt for newer versions.
44

5+
= 2.3.0 - Sep 21, 2021 =
6+
7+
* Bugs
8+
* [is_numeric warning in plugin API](https://wordpress.org/support/topic/is_numeric-error-for-plugin-api/)
9+
* [Missing default WP redirect from URLs with no ending trailing slash](https://wordpress.org/support/topic/missing-default-wp-redirect-from-urls-with-no-ending-trailing-slash/)
10+
* [trailing slash](https://wordpress.org/support/topic/trailing-slash-9/)
11+
* Fixed JS Error on updating Static page
12+
* Enhancements
13+
* Allow period in the permalink
14+
515
= 2.2.0 - Aug 13, 2021 =
616

717
* Bugs

custom-permalinks.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: Custom Permalinks
44
* Plugin URI: https://www.custompermalinks.com/
55
* Description: Set custom permalinks on a per-post basis.
6-
* Version: 2.4.0
6+
* Version: 2.5.0
77
* Requires at least: 2.6
88
* Requires PHP: 5.4
99
* Author: Sami Ahmed Siddiqui

includes/class-custom-permalinks.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ class Custom_Permalinks {
1818
*
1919
* @var string
2020
*/
21-
public $version = '2.4.0';
21+
public $version = '2.5.0';
2222

2323
/**
2424
* Class constructor.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@
2828
"gulp-uglify": "3.0.2"
2929
},
3030
"customPermalinks": {
31-
"pluginVersion": "2.4.0"
31+
"pluginVersion": "2.5.0"
3232
}
3333
}

readme.txt

+9-12
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
=== Custom Permalinks ===
22
Contributors: sasiddiqui
33
Tags: permalink, url, link, address, custom, redirect, custom post type, GDPR, GDPR Compliant
4-
Tested up to: 6.0
5-
Stable tag: 2.4.0
4+
Tested up to: 6.1
5+
Stable tag: 2.5.0
66
License: GPLv3
77
License URI: https://www.gnu.org/licenses/gpl-3.0.html
88

@@ -199,6 +199,13 @@ This process defines you the steps to follow either you are installing through W
199199

200200
== Changelog ==
201201

202+
= 2.5.0 - Jan 02, 2023 =
203+
204+
* Bugs
205+
* [Retreiving info from installed plugin (GDPR)](https://wordpress.org/support/topic/retreiving-info-from-installed-plugin-gdpr/)
206+
* Enhancement
207+
* Same permalink with WPML different domain
208+
202209
= 2.4.0 - Nov 26, 2021 =
203210

204211
* Bugs
@@ -209,16 +216,6 @@ This process defines you the steps to follow either you are installing through W
209216
* Enhancements
210217
* [Pending Post Preview Link](https://wordpress.org/support/topic/pending-post-preview-link/)
211218

212-
= 2.3.0 - Sep 21, 2021 =
213-
214-
* Bugs
215-
* [is_numeric warning in plugin API](https://wordpress.org/support/topic/is_numeric-error-for-plugin-api/)
216-
* [Missing default WP redirect from URLs with no ending trailing slash](https://wordpress.org/support/topic/missing-default-wp-redirect-from-urls-with-no-ending-trailing-slash/)
217-
* [trailing slash](https://wordpress.org/support/topic/trailing-slash-9/)
218-
* Fixed JS Error on updating Static page
219-
* Enhancements
220-
* Allow period in the permalink
221-
222219
= Earlier versions =
223220

224221
* For the changelog of earlier versions, please refer to the separate changelog.txt file.

0 commit comments

Comments
 (0)