Skip to content

Commit

Permalink
version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
pfefferle committed Apr 29, 2024
1 parent 6c90990 commit c9e980a
Show file tree
Hide file tree
Showing 4 changed files with 46 additions and 18 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,25 @@ 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).

## [2.3.1] - 2024-04-29

### Added

* Enable Mastodon Apps: Add remote outbox fetching
* Help texts

### Fixed

* Compatibility issues with Discourse
* Do not announce replies
* Also delete interactions with deleted person
* Check Author-URL only if user is enabled for ActivityPub
* Generate comment IDs for federation from home_url

### Removed

* Beta label from the #Hashtag settings

## [2.3.0] - 2024-04-16

### Added
Expand Down Expand Up @@ -725,6 +744,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

* initial

[2.3.1]: https://github.com/Automattic/wordpress-activitypub/compare/2.3.0...2.3.1
[2.3.0]: https://github.com/Automattic/wordpress-activitypub/compare/2.2.0...2.3.0
[2.2.0]: https://github.com/Automattic/wordpress-activitypub/compare/2.1.1...2.2.0
[2.1.1]: https://github.com/Automattic/wordpress-activitypub/compare/2.1.0...2.1.1
Expand Down
20 changes: 12 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
**Tags:** OStatus, fediverse, activitypub, activitystream
**Requires at least:** 5.5
**Tested up to:** 6.5
**Stable tag:** 2.3.0
**Stable tag:** 2.3.1
**Requires PHP:** 5.6
**License:** MIT
**License URI:** http://opensource.org/licenses/MIT
Expand Down Expand Up @@ -133,6 +133,17 @@ For reasons of data protection, it is not possible to see the followers of other

## Changelog ##

### 2.3.1 ###

* Added: Enable Mastodon Apps: Add remote outbox fetching
* Added: Help texts
* Fixed: Compatibility issues with Discourse
* Fixed: Do not announce replies
* Fixed: Also delete interactions with deleted person
* Fixed: Check Author-URL only if user is enabled for ActivityPub
* Fixed: Generate comment IDs for federation from home_url
* Removed: Beta label from the #Hashtag settings

### 2.3.0 ###

* Added: Mark links as "unhandled-link" and "status-link", for a better UX in the Mastodon App
Expand All @@ -152,13 +163,6 @@ For reasons of data protection, it is not possible to see the followers of other
* Changed: Remote Reply: limit enqueue to when needed
* Changed: Abstract shared Dialog code


### 2.2.0 ###

* Added: Remote-Reply lightbox
* Added: Support `application/ld+json` mime-type with AP profile in WebFinger
* Fixed: Prevent scheduler overload

See full Changelog on [GitHub](https://github.com/Automattic/wordpress-activitypub/blob/master/CHANGELOG.md).

## Upgrade Notice ##
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/pfefferle/wordpress-activitypub/
* Description: The ActivityPub protocol is a decentralized social networking protocol based upon the ActivityStreams 2.0 data format.
* Version: 2.3.0
* Version: 2.3.1
* Author: Matthias Pfefferle & Automattic
* Author URI: https://automattic.com/
* License: MIT
Expand All @@ -21,7 +21,7 @@
require_once __DIR__ . '/includes/compat.php';
require_once __DIR__ . '/includes/functions.php';

\define( 'ACTIVITYPUB_PLUGIN_VERSION', '2.3.0' );
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '2.3.1' );

/**
* Initialize the plugin constants.
Expand Down
20 changes: 12 additions & 8 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Contributors: automattic, pfefferle, mediaformat, mattwiebe, akirk, jeherve, nur
Tags: OStatus, fediverse, activitypub, activitystream
Requires at least: 5.5
Tested up to: 6.5
Stable tag: 2.3.0
Stable tag: 2.3.1
Requires PHP: 5.6
License: MIT
License URI: http://opensource.org/licenses/MIT
Expand Down Expand Up @@ -133,6 +133,17 @@ For reasons of data protection, it is not possible to see the followers of other

== Changelog ==

= 2.3.1 =

* Added: Enable Mastodon Apps: Add remote outbox fetching
* Added: Help texts
* Fixed: Compatibility issues with Discourse
* Fixed: Do not announce replies
* Fixed: Also delete interactions with deleted person
* Fixed: Check Author-URL only if user is enabled for ActivityPub
* Fixed: Generate comment IDs for federation from home_url
* Removed: Beta label from the #Hashtag settings

= 2.3.0 =

* Added: Mark links as "unhandled-link" and "status-link", for a better UX in the Mastodon App
Expand All @@ -152,13 +163,6 @@ For reasons of data protection, it is not possible to see the followers of other
* Changed: Remote Reply: limit enqueue to when needed
* Changed: Abstract shared Dialog code


= 2.2.0 =

* Added: Remote-Reply lightbox
* Added: Support `application/ld+json` mime-type with AP profile in WebFinger
* Fixed: Prevent scheduler overload

See full Changelog on [GitHub](https://github.com/Automattic/wordpress-activitypub/blob/master/CHANGELOG.md).

== Upgrade Notice ==
Expand Down

0 comments on commit c9e980a

Please sign in to comment.