Skip to content

Commit

Permalink
Update version numbers; this time, change stable.
Browse files Browse the repository at this point in the history
Previous release didn't actually happen.
  • Loading branch information
joedolson committed Nov 18, 2023
1 parent 8517eed commit 6b0fcb2
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion init.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* Domain Path: /lang
* License: GPL-2.0+
* License URI: http://www.gnu.org/license/gpl-2.0.txt
* Version: 2.1.2
* Version: 2.1.3
*/

/*
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "wp-accessibility",
"version": "2.1.2",
"version": "2.1.3",
"private": true,
"description": "WP Accessibility WordPress plug-in.",
"author": "Joe Dolson",
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Improving the Accessibility of your WordPress site.
* Requires at least: 4.4
* Tested up to: 6.4
* Requires PHP: 7.0
* Stable tag: `2.1.2`
* Stable tag: `2.1.3`
* License: GPLv2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down
10 changes: 9 additions & 1 deletion src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: title, accessibility, accessible, navigation, wcag, a11y, section508, focu
Requires at least: 3.4.2
Tested up to: 6.4
Requires PHP: 7.0
Stable tag: 2.1.1
Stable tag: 2.1.3
Text Domain: wp-accessibility
License: GPLv2 or later

Expand Down Expand Up @@ -82,6 +82,14 @@ WP Accessibility includes a statistics collection feature to help you identify h

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

= 2.1.3 =

* Bug fix: Error thrown if a 3rd party is using `the_title` filters improperly.
* Bug fix: Handle case if passed data is invalid.
* Bug fix: Change dashboard widget function name to minimize conflict.
* Bug fix: Setting stats to 'none' should fully disable stats collection.
* Bug fix: Ensure that admin status is verified on server side when stats set to 'admin'.

= 2.1.2 =

* Bug fix: Build error caused JS errors when not running in SCRIPT_DEBUG.
Expand Down
4 changes: 2 additions & 2 deletions src/wp-accessibility.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* Domain Path: /lang
* License: GPL-2.0+
* License URI: http://www.gnu.org/license/gpl-2.0.txt
* Version: 2.1.2
* Version: 2.1.3
*/

/*
Expand Down Expand Up @@ -73,7 +73,7 @@ function wpa_admin_menu() {
* Install on activation.
*/
function wpa_install() {
$wpa_version = '2.1.2';
$wpa_version = '2.1.3';
if ( 'true' !== get_option( 'wpa_installed' ) ) {
add_option( 'rta_from_tag_clouds', 'on' );
add_option( 'asl_styles_focus', '' );
Expand Down

0 comments on commit 6b0fcb2

Please sign in to comment.