Skip to content

Commit

Permalink
Update readme and version numbers
Browse files Browse the repository at this point in the history
  • Loading branch information
joedolson committed Oct 20, 2024
1 parent 7c3ad01 commit 5e46f7e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 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 @@
* License: GPL-2.0+
* License URI: http://www.gnu.org/license/gpl-2.0.txt
* Domain Path: lang
* Version: 4.2.4
* Version: 4.2.5
*/

/*
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Automatically send your posts as X.com or Mastodon status updates.
* Tags: accessibility, WordPress
* Requires at least: 6.0
* Tested up to: 6.6
* Stable tag: `4.2.4`
* Stable tag: `4.2.5`
* License: GPLv2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down
5 changes: 4 additions & 1 deletion src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Tested up to: 6.6
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: wp-to-twitter
Stable tag: 4.2.4
Stable tag: 4.2.5

Posts to X when you update your WordPress blog or add a link, with your chosen URL shortening service.

Expand Down Expand Up @@ -61,6 +61,9 @@ Check out my <a href="https://github.com/joedolson/plugin-extensions/tree/master
= 4.2.5 =

* Bug fix: Fatal error thrown on PHP 8+ if removing stray characters from tag boundaries due to obsolete argument usage in `mb_strrpos()`. Props @toru.
* Bug fix: Update classes to allow dynamic properties following PHP 8.2 dynamic prop deprecation.
* Bug fix: If template tags were re-ordered in the `wpt_tags` filter, they were not also reordered in values.
* Filter: add `wpt_custom_tag` filter to manage the value of custom tags added in `wpt_tags`.

= 4.2.4 =

Expand Down
4 changes: 2 additions & 2 deletions src/wp-to-twitter.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
* License: GPL-2.0+
* License URI: http://www.gnu.org/license/gpl-2.0.txt
* Domain Path: lang
* Version: 4.2.4
* Version: 4.2.5
*/

/*
Expand Down Expand Up @@ -69,7 +69,7 @@
require_once plugin_dir_path( __FILE__ ) . 'wpt-rate-limiting.php';

global $wpt_version;
$wpt_version = '4.2.4';
$wpt_version = '4.2.5';

add_action( 'init', 'wpt_load_textdomain' );
/**
Expand Down

0 comments on commit 5e46f7e

Please sign in to comment.