version bump

This commit is contained in:
Matthias Pfefferle 2024-10-02 11:35:08 +02:00
parent 711217715c
commit ad1bcbd475
4 changed files with 28 additions and 4 deletions

View file

@ -5,6 +5,17 @@ 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/), 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). and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
## [3.3.2] - 2024-10-02
### Fixed
* Keep priority of Icons
* Fatal error if remote-object is `WP_Error`
### Improved
* Adopt WordPress PHP Coding Standards
## [3.3.1] - 2024-09-26 ## [3.3.1] - 2024-09-26
### Fixed ### Fixed
@ -947,6 +958,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* initial * initial
[3.3.2]: https://github.com/Automattic/wordpress-activitypub/compare/3.3.1...3.3.2
[3.3.1]: https://github.com/Automattic/wordpress-activitypub/compare/3.3.0...3.3.1 [3.3.1]: https://github.com/Automattic/wordpress-activitypub/compare/3.3.0...3.3.1
[3.3.0]: https://github.com/Automattic/wordpress-activitypub/compare/3.2.5...3.3.0 [3.3.0]: https://github.com/Automattic/wordpress-activitypub/compare/3.2.5...3.3.0
[3.2.5]: https://github.com/Automattic/wordpress-activitypub/compare/3.2.4...3.2.5 [3.2.5]: https://github.com/Automattic/wordpress-activitypub/compare/3.2.4...3.2.5

View file

@ -3,7 +3,7 @@
**Tags:** OStatus, fediverse, activitypub, activitystream **Tags:** OStatus, fediverse, activitypub, activitystream
**Requires at least:** 5.5 **Requires at least:** 5.5
**Tested up to:** 6.6 **Tested up to:** 6.6
**Stable tag:** 3.3.1 **Stable tag:** 3.3.2
**Requires PHP:** 7.0 **Requires PHP:** 7.0
**License:** MIT **License:** MIT
**License URI:** http://opensource.org/licenses/MIT **License URI:** http://opensource.org/licenses/MIT
@ -150,6 +150,12 @@ For reasons of data protection, it is not possible to see the followers of other
## Changelog ## ## Changelog ##
### 3.3.2 ###
* Fixed: Keep priority of Icons
* Fixed: Fatal error if remote-object is `WP_Error`
* Improved: Adopt WordPress PHP Coding Standards
### 3.3.1 ### ### 3.3.1 ###
* Fixed: PHP Warnings * Fixed: PHP Warnings

View file

@ -3,7 +3,7 @@
* Plugin Name: ActivityPub * Plugin Name: ActivityPub
* Plugin URI: https://github.com/pfefferle/wordpress-activitypub/ * Plugin URI: https://github.com/pfefferle/wordpress-activitypub/
* Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format. * Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format.
* Version: 3.3.1 * Version: 3.3.2
* Author: Matthias Pfefferle & Automattic * Author: Matthias Pfefferle & Automattic
* Author URI: https://automattic.com/ * Author URI: https://automattic.com/
* License: MIT * License: MIT
@ -23,7 +23,7 @@ use function Activitypub\site_supports_blocks;
require_once __DIR__ . '/includes/compat.php'; require_once __DIR__ . '/includes/compat.php';
require_once __DIR__ . '/includes/functions.php'; require_once __DIR__ . '/includes/functions.php';
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '3.3.1' ); \define( 'ACTIVITYPUB_PLUGIN_VERSION', '3.3.2' );
/** /**
* Initialize the plugin constants. * Initialize the plugin constants.

View file

@ -3,7 +3,7 @@ Contributors: automattic, pfefferle, mediaformat, mattwiebe, akirk, jeherve, nur
Tags: OStatus, fediverse, activitypub, activitystream Tags: OStatus, fediverse, activitypub, activitystream
Requires at least: 5.5 Requires at least: 5.5
Tested up to: 6.6 Tested up to: 6.6
Stable tag: 3.3.1 Stable tag: 3.3.2
Requires PHP: 7.0 Requires PHP: 7.0
License: MIT License: MIT
License URI: http://opensource.org/licenses/MIT License URI: http://opensource.org/licenses/MIT
@ -148,6 +148,12 @@ For reasons of data protection, it is not possible to see the followers of other
== Changelog == == Changelog ==
= 3.3.2 =
* Fixed: Keep priority of Icons
* Fixed: Fatal error if remote-object is `WP_Error`
* Improved: Adopt WordPress PHP Coding Standards
= 3.3.1 = = 3.3.1 =
* Fixed: PHP Warnings * Fixed: PHP Warnings