Skip to content

Commit a7f04db

Browse files
committed
use 3.0.0
because we include some breaking changes
1 parent 5d780a9 commit a7f04db

File tree

5 files changed

+9
-9
lines changed

5 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 2 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-
## [2.7.0] - 2024-07-XX
8+
## [3.0.0] - 2024-07-XX
99

1010
### Added
1111

@@ -838,7 +838,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
838838

839839
* initial
840840

841-
[2.7.0]: https://github.com/Automattic/wordpress-activitypub/compare/2.6.1...2.7.0
841+
[3.0.0]: https://github.com/Automattic/wordpress-activitypub/compare/2.6.1...3.0.0
842842
[2.6.1]: https://github.com/Automattic/wordpress-activitypub/compare/2.6.0...2.6.1
843843
[2.6.0]: https://github.com/Automattic/wordpress-activitypub/compare/2.5.0...2.6.0
844844
[2.5.0]: https://github.com/Automattic/wordpress-activitypub/compare/2.4.0...2.5.0

README.md

Lines changed: 2 additions & 2 deletions
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:** 2.7.0
6+
**Stable tag:** 3.0.0
77
**Requires PHP:** 7.0
88
**License:** MIT
99
**License URI:** http://opensource.org/licenses/MIT
@@ -133,7 +133,7 @@ For reasons of data protection, it is not possible to see the followers of other
133133

134134
## Changelog ##
135135

136-
### 2.7.0 ###
136+
### 3.0.0 ###
137137

138138
* Added: "Reply Context" suppot, you can now reply to posts on the Fediverse through a WordPress post
139139
* Added: Bookmarklet to automatically pre-fill the "Reply Context" block

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: 2.7.0
6+
* Version: 3.0.0
77
* Author: Matthias Pfefferle & Automattic
88
* Author URI: https://automattic.com/
99
* License: MIT
@@ -21,7 +21,7 @@
2121
require_once __DIR__ . '/includes/compat.php';
2222
require_once __DIR__ . '/includes/functions.php';
2323

24-
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '2.7.0' );
24+
\define( 'ACTIVITYPUB_PLUGIN_VERSION', '3.0.0' );
2525

2626
/**
2727
* Initialize the plugin constants.

includes/class-migration.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,7 @@ public static function maybe_migrate() {
132132
if ( version_compare( $version_from_db, '2.3.0', '<' ) ) {
133133
self::migrate_from_2_2_0();
134134
}
135-
if ( version_compare( $version_from_db, '2.7.0', '<' ) ) {
135+
if ( version_compare( $version_from_db, '3.0.0', '<' ) ) {
136136
self::migrate_from_2_6_0();
137137
}
138138

readme.txt

Lines changed: 2 additions & 2 deletions
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: 2.7.0
6+
Stable tag: 3.0.0
77
Requires PHP: 7.0
88
License: MIT
99
License URI: http://opensource.org/licenses/MIT
@@ -133,7 +133,7 @@ For reasons of data protection, it is not possible to see the followers of other
133133

134134
== Changelog ==
135135

136-
= 2.7.0 =
136+
= 3.0.0 =
137137

138138
* Added: "Reply Context" suppot, you can now reply to posts on the Fediverse through a WordPress post
139139
* Added: Bookmarklet to automatically pre-fill the "Reply Context" block

0 commit comments

Comments
 (0)