Skip to content

Commit 306dfe7

Browse files
committed
Update version numbers and readme
1 parent 4d82695 commit 306dfe7

File tree

5 files changed

+11
-6
lines changed

5 files changed

+11
-6
lines changed

init.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* Domain Path: /lang
1818
* License: GPL-2.0+
1919
* License URI: http://www.gnu.org/license/gpl-2.0.txt
20-
* Version: 2.1.3
20+
* Version: 2.1.4
2121
*/
2222

2323
/*

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "wp-accessibility",
3-
"version": "2.1.3",
3+
"version": "2.1.4",
44
"private": true,
55
"description": "WP Accessibility WordPress plug-in.",
66
"author": "Joe Dolson",

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Improving the Accessibility of your WordPress site.
1111
* Requires at least: 4.4
1212
* Tested up to: 6.4
1313
* Requires PHP: 7.0
14-
* Stable tag: `2.1.3`
14+
* Stable tag: `2.1.4`
1515
* License: GPLv2 or later
1616
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
1717

src/readme.txt

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Tags: title, accessibility, accessible, navigation, wcag, a11y, section508, focu
55
Requires at least: 3.4.2
66
Tested up to: 6.4
77
Requires PHP: 7.0
8-
Stable tag: 2.1.3
8+
Stable tag: 2.1.4
99
Text Domain: wp-accessibility
1010
License: GPLv2 or later
1111

@@ -82,6 +82,11 @@ WP Accessibility includes a statistics collection feature to help you identify h
8282

8383
[Suggest a change!](https://github.com/joedolson/wp-accessibility/issues/)
8484

85+
= 2.1.4 =
86+
87+
* Bug fix: Incorrect type check caused most stats to display as 'no data'.
88+
* Change: Only show first 5 changes on user stats in dashboard.
89+
8590
= 2.1.3 =
8691

8792
* Bug fix: Error thrown if a 3rd party is using `the_title` filters improperly.

src/wp-accessibility.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* Domain Path: /lang
1818
* License: GPL-2.0+
1919
* License URI: http://www.gnu.org/license/gpl-2.0.txt
20-
* Version: 2.1.3
20+
* Version: 2.1.4
2121
*/
2222

2323
/*
@@ -73,7 +73,7 @@ function wpa_admin_menu() {
7373
* Install on activation.
7474
*/
7575
function wpa_install() {
76-
$wpa_version = '2.1.3';
76+
$wpa_version = '2.1.4';
7777
if ( 'true' !== get_option( 'wpa_installed' ) ) {
7878
add_option( 'rta_from_tag_clouds', 'on' );
7979
add_option( 'asl_styles_focus', '' );

0 commit comments

Comments
 (0)