Skip to content

Commit cc7a6cc

Browse files
committed
version bump
1 parent 7370e97 commit cc7a6cc

File tree

4 files changed

+44
-4
lines changed

4 files changed

+44
-4
lines changed

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,24 @@ 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+
## [3.3.0] - 2024-09-25
9+
10+
### Added
11+
12+
* Content warning support
13+
* Replies collection
14+
* Enable Mastodon Apps: support profile editing, blog user
15+
* Follow Me/Followers: add inherit mode for dynamic templating
16+
17+
### Fixed
18+
19+
* Cropping Header Images for users without the 'customize' capability
20+
21+
### Improved
22+
23+
* OpenSSL handling
24+
* Added missing @ in Follow-Me block
25+
826
## [3.2.5] - 2024-09-17
927

1028
### Fixed
@@ -922,6 +940,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
922940

923941
* initial
924942

943+
[3.3.0]: https://github.com/Automattic/wordpress-activitypub/compare/3.2.5...3.3.0
925944
[3.2.5]: https://github.com/Automattic/wordpress-activitypub/compare/3.2.4...3.2.5
926945
[3.2.4]: https://github.com/Automattic/wordpress-activitypub/compare/3.2.3...3.2.4
927946
[3.2.3]: https://github.com/Automattic/wordpress-activitypub/compare/3.2.2...3.2.3

README.md

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
**Tags:** OStatus, fediverse, activitypub, activitystream
44
**Requires at least:** 5.5
55
**Tested up to:** 6.6
6-
**Stable tag:** 3.2.5
6+
**Stable tag:** 3.3.0
77
**Requires PHP:** 7.0
88
**License:** MIT
99
**License URI:** http://opensource.org/licenses/MIT
@@ -146,9 +146,20 @@ For reasons of data protection, it is not possible to see the followers of other
146146
2. The "Followers"-Block in the Block-Editor
147147
3. The "Federated Reply"-Block in the Block-Editor
148148
4. A "Federated Reply" in a Post
149+
5. A Blog-Profile on Mastodon
149150

150151
## Changelog ##
151152

153+
### 3.3.0 ###
154+
155+
* Added: Content warning support
156+
* Added: Replies collection
157+
* Added: Enable Mastodon Apps: support profile editing, blog user
158+
* Added: Follow Me/Followers: add inherit mode for dynamic templating
159+
* Fixed: Cropping Header Images for users without the 'customize' capability
160+
* Improved: OpenSSL handling
161+
* Improved: Added missing @ in Follow-Me block
162+
152163
### 3.2.5 ###
153164

154165
* Fixed: Enable Mastodon Apps check

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/pfefferle/wordpress-activitypub/
55
* Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format.
6-
* Version: 3.2.5
6+
* Version: 3.3.0
77
* Author: Matthias Pfefferle & Automattic
88
* Author URI: https://automattic.com/
99
* License: MIT
@@ -23,7 +23,7 @@
2323
require_once __DIR__ . '/includes/compat.php';
2424
require_once __DIR__ . '/includes/functions.php';
2525

26-
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '3.2.5' );
26+
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '3.3.0' );
2727

2828
/**
2929
* Initialize the plugin constants.

readme.txt

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: automattic, pfefferle, mediaformat, mattwiebe, akirk, jeherve, nur
33
Tags: OStatus, fediverse, activitypub, activitystream
44
Requires at least: 5.5
55
Tested up to: 6.6
6-
Stable tag: 3.2.5
6+
Stable tag: 3.3.0
77
Requires PHP: 7.0
88
License: MIT
99
License URI: http://opensource.org/licenses/MIT
@@ -148,6 +148,16 @@ For reasons of data protection, it is not possible to see the followers of other
148148

149149
== Changelog ==
150150

151+
= 3.3.0 =
152+
153+
* Added: Content warning support
154+
* Added: Replies collection
155+
* Added: Enable Mastodon Apps: support profile editing, blog user
156+
* Added: Follow Me/Followers: add inherit mode for dynamic templating
157+
* Fixed: Cropping Header Images for users without the 'customize' capability
158+
* Improved: OpenSSL handling
159+
* Improved: Added missing @ in Follow-Me block
160+
151161
= 3.2.5 =
152162

153163
* Fixed: Enable Mastodon Apps check

0 commit comments

Comments
 (0)