Skip to content

Commit

Permalink
Versions
Browse files Browse the repository at this point in the history
  • Loading branch information
joedolson committed Dec 30, 2023
1 parent d408d98 commit 10c5dc9
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 deletions.
6 changes: 3 additions & 3 deletions init.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package WP Accessibility
* @author Joe Dolson
* @copyright 2012-2023 Joe Dolson
* @copyright 2012-2024 Joe Dolson
* @license GPL-2.0+
*
* @wordpress-plugin
Expand All @@ -17,11 +17,11 @@
* Domain Path: /lang
* License: GPL-2.0+
* License URI: http://www.gnu.org/license/gpl-2.0.txt
* Version: 2.1.6
* Version: 2.1.7
*/

/*
Copyright 2011-2023 Joe Dolson (email : [email protected])
Copyright 2011-2024 Joe Dolson (email : [email protected])
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
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.6`
* Stable tag: `2.1.7`
* License: GPLv2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down
6 changes: 5 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.6
Stable tag: 2.1.7
Text Domain: wp-accessibility
License: GPLv2 or later

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

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

= 2.1.7 =

* Bug fix: Two incorrect placeholder formats in `sprintf` call.

= 2.1.5, 2.1.6 =

* Security fix: XSS vulnerability caused by a debugging statement left in place. Props Joshua Bixler.
Expand Down
8 changes: 4 additions & 4 deletions src/wp-accessibility.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
*
* @package WP Accessibility
* @author Joe Dolson
* @copyright 2012-2023 Joe Dolson
* @copyright 2012-2024 Joe Dolson
* @license GPL-2.0+
*
* @wordpress-plugin
Expand All @@ -17,11 +17,11 @@
* Domain Path: /lang
* License: GPL-2.0+
* License URI: http://www.gnu.org/license/gpl-2.0.txt
* Version: 2.1.6
* Version: 2.1.7
*/

/*
Copyright 2012-2023 Joe Dolson (email : [email protected])
Copyright 2012-2024 Joe Dolson (email : [email protected])
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
Expand Down Expand Up @@ -73,7 +73,7 @@ function wpa_admin_menu() {
* Install on activation.
*/
function wpa_install() {
$wpa_version = '2.1.6';
$wpa_version = '2.1.7';
if ( 'true' !== get_option( 'wpa_installed' ) ) {
add_option( 'rta_from_tag_clouds', 'on' );
add_option( 'asl_styles_focus', '' );
Expand Down

0 comments on commit 10c5dc9

Please sign in to comment.