Skip to content

Commit

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

/*
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-to-twitter",
"version": "4.2.2",
"version": "4.2.6",
"private": true,
"description": "X.com/Mastodon 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 @@ -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.5`
* Stable tag: `4.2.6`
* License: GPLv2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down
7 changes: 6 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.5
Stable tag: 4.2.6

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

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

== Changelog ==

= 4.2.6 =

* Remove textdomain loader (obsolete since WP 4.6)
* Bug fix: HTML encode title sent to X API when using backup title value.

= 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.
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.5
* Version: 4.2.6
*/

/*
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.5';
$wpt_version = '4.2.6';

/**
* Check for OAuth configuration
Expand Down

0 comments on commit e8f18c9

Please sign in to comment.