Skip to content

Commit

Permalink
Release 4.7.3 (#1192)
Browse files Browse the repository at this point in the history
* Release 4.7.3

* Fix migration versions

* Fix docs versions
  • Loading branch information
obenland committed Jan 21, 2025
1 parent 87cad5c commit 63ed869
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Untitled]
## [4.7.3] - 2025-01-21

### Fixed

Expand Down Expand Up @@ -1227,8 +1227,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

* initial

[Unreleased]: https://github.com/Automattic/wordpress-activitypub/compare/4.7.2...trunk
[Unreleased]: https://github.com/Automattic/wordpress-activitypub/compare/4.7.3...trunk
<!-- Add new release below and update "Unreleased" link -->
[4.7.3]: https://github.com/Automattic/wordpress-activitypub/compare/4.7.2...4.7.3
[4.7.2]: https://github.com/Automattic/wordpress-activitypub/compare/4.7.1...4.7.2
[4.7.1]: https://github.com/Automattic/wordpress-activitypub/compare/4.7.0...4.7.1
[4.7.0]: https://github.com/Automattic/wordpress-activitypub/compare/4.6.0...4.7.0
Expand Down
4 changes: 2 additions & 2 deletions activitypub.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: ActivityPub
* Plugin URI: https://github.com/Automattic/wordpress-activitypub
* Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format.
* Version: 4.7.2
* Version: 4.7.3
* Author: Matthias Pfefferle & Automattic
* Author URI: https://automattic.com/
* License: MIT
Expand All @@ -19,7 +19,7 @@

use WP_CLI;

\define( 'ACTIVITYPUB_PLUGIN_VERSION', '4.7.2' );
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '4.7.3' );

// Plugin related constants.
\define( 'ACTIVITYPUB_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
Expand Down
2 changes: 1 addition & 1 deletion includes/class-migration.php
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ public static function maybe_migrate() {
if ( \version_compare( $version_from_db, '4.7.2', '<' ) ) {
self::migrate_to_4_7_2();
}
if ( \version_compare( $version_from_db, 'unreleased', '<' ) ) {
if ( \version_compare( $version_from_db, '4.7.3', '<' ) ) {
add_action( 'init', 'flush_rewrite_rules', 20 );
}

Expand Down
4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: automattic, pfefferle, mattwiebe, obenland, akirk, jeherve, mediaf
Tags: OStatus, fediverse, activitypub, activitystream
Requires at least: 5.5
Tested up to: 6.7
Stable tag: 4.7.2
Stable tag: 4.7.3
Requires PHP: 7.2
License: MIT
License URI: http://opensource.org/licenses/MIT
Expand Down Expand Up @@ -132,7 +132,7 @@ For reasons of data protection, it is not possible to see the followers of other

== Changelog ==

= Unreleased =
= 4.7.3 =

* Fixed: Flush rewrite rules after NodeInfo update.

Expand Down

0 comments on commit 63ed869

Please sign in to comment.