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 Feb 5, 2025
1 parent 6c78f38 commit 27cd863
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion init.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
* Text Domain: wp-to-twitter
* License: GPL-2.0+
* License URI: http://www.gnu.org/license/gpl-2.0.txt
* Version: 5.0.0-beta1
* Version: 5.0.0-RC1
*/

/*
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": "5.0.0-beta1",
"version": "5.0.0-RC1",
"private": true,
"description": "Bluesky/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 Bluesky or Mastodon status updates.
* Tags: accessibility, WordPress
* Requires at least: 6.0
* Tested up to: 6.7
* Stable tag: `5.0.0-beta1`
* Stable tag: `5.0.0-RC1`
* License: GPLv2 or later
* License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down
6 changes: 4 additions & 2 deletions src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Tested up to: 6.7
Requires PHP: 7.4
License: GPLv2 or later
Text Domain: wp-to-twitter
Stable tag: 5.0.0-beta1
Stable tag: 5.0.0-RC1

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

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

== Changelog ==

= 5.0.0-beta1 =
= 5.0.0-RC1 =

* Feature: Ability to disable connected services without disconnecting.
* Feature: Select which services you wish to send a given update to.
Expand All @@ -68,6 +68,7 @@ Check out my <a href="https://github.com/joedolson/plugin-extensions/tree/master
* Change: Extend default excerpt length.
* Change: Always defer template execution until status update is sent.
* Change: Make character counting messages indicate which service limit is reached.
* Change: simplify #account# and #@# handlers.
* Bug fix: Make AJAX submissions aware of more metabox settings.
* Improved error handling.
* Design updates.
Expand All @@ -76,6 +77,7 @@ Check out my <a href="https://github.com/joedolson/plugin-extensions/tree/master
* Update references to Tweets to be service independent.
* Significant structural reorganization.
* Change output of #account# and #@# template tags for increased predictability.
* Code restructure to group service-specific code.

= 4.3.2 =

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 @@ -16,7 +16,7 @@
* Text Domain: wp-to-twitter
* License: GPL-2.0+
* License URI: http://www.gnu.org/license/gpl-2.0.txt
* Version: 5.0.0-beta1
* Version: 5.0.0-RC1
*/

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

define( 'XPOSTER_VERSION', '5.0.0-beta1' );
define( 'XPOSTER_VERSION', '5.0.0-RC1' );

register_activation_hook( __FILE__, 'wpt_check_version' );
/**
Expand Down

0 comments on commit 27cd863

Please sign in to comment.