Skip to content

Commit

Permalink
Version bump + Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
akirk committed Jul 23, 2023
1 parent 86d5695 commit 77ad15d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
- Tested up to: 6.3
- Requires PHP: 5.6
- License: [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html)
- Stable tag: 2.7.0
- Stable tag: 2.7.1

Your own WordPress at the center of your online activity. Follow friends and other websites and establish friendship relationships between blogs.

Expand Down Expand Up @@ -95,6 +95,10 @@ There is a cache of your friends post in form of a Custom Post Type friend_post

## Changelog

### 2.7.1
- Update Blocks Everywhere for WordPress 6.3 compatbility ([#236])
- ActivityPub: Also detect standard fediverse urls and assign the post-format status ([#237])

### 2.7.0
- Improve the Onboarding Experience ([#231])
- Expose the ActivityPub plugin more on the Add Friend screen ([#234])
Expand Down Expand Up @@ -232,6 +236,8 @@ There is a cache of your friends post in form of a Custom Post Type friend_post
- Add Emoji reactions
- Add blog to blog messaging

[#237]: https://github.com/akirk/friends/pull/237
[#236]: https://github.com/akirk/friends/pull/236
[#231]: https://github.com/akirk/friends/pull/231
[#234]: https://github.com/akirk/friends/pull/234
[#233]: https://github.com/akirk/friends/pull/233
Expand Down
4 changes: 2 additions & 2 deletions friends.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin name: Friends
* Plugin author: Alex Kirk
* Plugin URI: https://github.com/akirk/friends
* Version: 2.7.0
* Version: 2.7.1
*
* Description: A social network between WordPresses. Privacy focused, by itself a self-hosted RSS++ reader with notifications.
*
Expand All @@ -24,7 +24,7 @@
define( 'FRIENDS_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
define( 'FRIENDS_PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
define( 'FRIENDS_PLUGIN_FILE', plugin_dir_path( __FILE__ ) . '/' . basename( __FILE__ ) );
define( 'FRIENDS_VERSION', '2.7.0' );
define( 'FRIENDS_VERSION', '2.7.1' );

require_once __DIR__ . '/libs/Mf2/Parser.php';
require_once __DIR__ . '/libs/blocks-everywhere/blocks-everywhere.php';
Expand Down

0 comments on commit 77ad15d

Please sign in to comment.