Skip to content

Commit 63ed869

Browse files
committed
Release 4.7.3 (#1192)
* Release 4.7.3 * Fix migration versions * Fix docs versions
1 parent 87cad5c commit 63ed869

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8-
## [Untitled]
8+
## [4.7.3] - 2025-01-21
99

1010
### Fixed
1111

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

12281228
* initial
12291229

1230-
[Unreleased]: https://github.com/Automattic/wordpress-activitypub/compare/4.7.2...trunk
1230+
[Unreleased]: https://github.com/Automattic/wordpress-activitypub/compare/4.7.3...trunk
12311231
<!-- Add new release below and update "Unreleased" link -->
1232+
[4.7.3]: https://github.com/Automattic/wordpress-activitypub/compare/4.7.2...4.7.3
12321233
[4.7.2]: https://github.com/Automattic/wordpress-activitypub/compare/4.7.1...4.7.2
12331234
[4.7.1]: https://github.com/Automattic/wordpress-activitypub/compare/4.7.0...4.7.1
12341235
[4.7.0]: https://github.com/Automattic/wordpress-activitypub/compare/4.6.0...4.7.0

activitypub.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: ActivityPub
44
* Plugin URI: https://github.com/Automattic/wordpress-activitypub
55
* Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format.
6-
* Version: 4.7.2
6+
* Version: 4.7.3
77
* Author: Matthias Pfefferle & Automattic
88
* Author URI: https://automattic.com/
99
* License: MIT
@@ -19,7 +19,7 @@
1919

2020
use WP_CLI;
2121

22-
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '4.7.2' );
22+
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '4.7.3' );
2323

2424
// Plugin related constants.
2525
\define( 'ACTIVITYPUB_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );

includes/class-migration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ public static function maybe_migrate() {
167167
if ( \version_compare( $version_from_db, '4.7.2', '<' ) ) {
168168
self::migrate_to_4_7_2();
169169
}
170-
if ( \version_compare( $version_from_db, 'unreleased', '<' ) ) {
170+
if ( \version_compare( $version_from_db, '4.7.3', '<' ) ) {
171171
add_action( 'init', 'flush_rewrite_rules', 20 );
172172
}
173173

readme.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: automattic, pfefferle, mattwiebe, obenland, akirk, jeherve, mediaf
33
Tags: OStatus, fediverse, activitypub, activitystream
44
Requires at least: 5.5
55
Tested up to: 6.7
6-
Stable tag: 4.7.2
6+
Stable tag: 4.7.3
77
Requires PHP: 7.2
88
License: MIT
99
License URI: http://opensource.org/licenses/MIT
@@ -132,7 +132,7 @@ For reasons of data protection, it is not possible to see the followers of other
132132

133133
== Changelog ==
134134

135-
= Unreleased =
135+
= 4.7.3 =
136136

137137
* Fixed: Flush rewrite rules after NodeInfo update.
138138

0 commit comments

Comments
 (0)