Skip to content

Commit 57b135c

Browse files
authored
Release 5.3.0 (#1371)
1 parent 064bc58 commit 57b135c

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
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-
## [Unreleased]
8+
## [5.3.0] - 2025-02-25
99

1010
### Added
1111

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

13311331
* initial
13321332

1333-
[Unreleased]: https://github.com/Automattic/wordpress-activitypub/compare/5.2.0...trunk
1333+
[Unreleased]: https://github.com/Automattic/wordpress-activitypub/compare/5.3.0...trunk
13341334
<!-- Add new release below and update "Unreleased" link -->
1335+
[5.3.0]: https://github.com/Automattic/wordpress-activitypub/compare/5.2.0...5.3.0
13351336
[5.2.0]: https://github.com/Automattic/wordpress-activitypub/compare/5.1.0...5.2.0
13361337
[5.1.0]: https://github.com/Automattic/wordpress-activitypub/compare/5.0.0...5.1.0
13371338
[5.0.0]: https://github.com/Automattic/wordpress-activitypub/compare/4.7.3...5.0.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: 5.2.0
6+
* Version: 5.3.0
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', '5.2.0' );
22+
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '5.3.0' );
2323

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

includes/activity/class-generic-object.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* It is used to create objects that might be unknown by the plugin but
1818
* conform to the ActivityStreams vocabulary.
1919
*
20-
* @since Unreleased
20+
* @since 5.3.0
2121
*/
2222
#[\AllowDynamicProperties]
2323
class Generic_Object {

includes/class-migration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ public static function maybe_migrate() {
182182
if ( \version_compare( $version_from_db, '5.2.0', '<' ) ) {
183183
Scheduler::register_schedules();
184184
}
185-
if ( \version_compare( $version_from_db, 'unreleased', '<' ) ) {
185+
if ( \version_compare( $version_from_db, '5.3.0', '<' ) ) {
186186
add_action( 'init', 'flush_rewrite_rules', 20 );
187187
}
188188

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: 5.2.0
6+
Stable tag: 5.3.0
77
Requires PHP: 7.2
88
License: MIT
99
License URI: http://opensource.org/licenses/MIT
@@ -129,7 +129,7 @@ For reasons of data protection, it is not possible to see the followers of other
129129

130130
== Changelog ==
131131

132-
= Unreleased =
132+
= 5.3.0 =
133133

134134
* Added: A fallback `Note` for `Article` objects to improve previews on services that don't support Articles yet.
135135
* Added: A reply `context` for Posts and Comments to allow relying parties to discover the whole conversation of a thread.

0 commit comments

Comments
 (0)