Skip to content

Commit a1dad30

Browse files
committed
Update readme & version numbers.
1 parent a3ea630 commit a1dad30

6 files changed

+22
-9
lines changed

init.php

+1-1
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.13
20+
* Version: 2.1.14
2121
*/
2222

2323
/*

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

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

readme.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ Improving the Accessibility of your WordPress site.
1010
* Tags: accessibility, WordPress
1111
* Requires at least: 4.9
1212
* Tested up to: 6.7
13-
* Requires PHP: 7.0
14-
* Stable tag: `2.1.13`
13+
* Requires PHP: 7.4
14+
* Stable tag: `2.1.14`
1515
* License: GPLv2 or later
1616
* License URI: http://www.gnu.org/licenses/gpl-2.0.html
1717

src/readme.txt

+14-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Tags: accessibility, wcag, a11y, section508, alt text
55
Requires at least: 4.9
66
Tested up to: 6.7
77
Requires PHP: 7.4
8-
Stable tag: 2.1.13
8+
Stable tag: 2.1.14
99
Text Domain: wp-accessibility
1010
License: GPLv2 or later
1111

@@ -82,6 +82,19 @@ 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.14 =
86+
87+
* Add Bluesky & set `aria-hidden` on social SVGs.
88+
* Fix unclosed `span`.
89+
* Bug fix fetching ID for alt attribute toggles on pages.
90+
* Disable `h1` in block editor by default; add setting to enable.
91+
* Add `font-display: swap` for Accessibility icons.
92+
* Change `enqueue_editor_block_assets` action to `enqueue_block_assets`
93+
* Verify that `$browser` is an object when rendering browser stats.
94+
* Replace `json_encode` with `wp_json_encode`.
95+
* Fix bug with translation used before `init`.
96+
* Fix duplicate ID in content summary container. Props @ryokuhi.
97+
8598
= 2.1.13 =
8699

87100
* Remove textdomain loader and translations. These have been out of date for years.

src/wp-accessibility.php

+2-2
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.13
20+
* Version: 2.1.14
2121
*/
2222

2323
/*
@@ -86,7 +86,7 @@ function wpa_admin_menu() {
8686
* Install on activation.
8787
*/
8888
function wpa_install() {
89-
$wpa_version = '2.1.13';
89+
$wpa_version = '2.1.14';
9090
if ( 'true' !== get_option( 'wpa_installed' ) ) {
9191
add_option( 'rta_from_tag_clouds', 'on' );
9292
add_option( 'asl_styles_focus', '' );

0 commit comments

Comments
 (0)