Skip to content

Commit

Permalink
Version bump + Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
akirk committed Nov 27, 2024
1 parent 2ee283c commit 975a86c
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 3.2.0
- Improve Translate Live compatibility ([#401])
- Fix blog follower count in sidebar ([#400])
### 3.1.9
- Fix bug with loading the main theme ([#398])

Expand Down Expand Up @@ -296,6 +299,8 @@
- PHP: Introduced a namespace, changed the plugin hooks to friends_loaded and friends_load_parsers
- Add checks for diagnosing the correct functioning to Site Health

[#401]: https://github.com/akirk/friends/pull/401
[#400]: https://github.com/akirk/friends/pull/400
[#398]: https://github.com/akirk/friends/pull/398
[#396]: https://github.com/akirk/friends/pull/396
[#395]: https://github.com/akirk/friends/pull/395
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
- Requires at least: 5.0
- Tested up to: 6.7
- License: GPL-2.0-or-later
- Stable tag: 3.1.9
- Stable tag: 3.2.0

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 @@ -96,6 +96,10 @@ There is a cache of your friends post in form of a Custom Post Type friend_post

## Changelog

### 3.2.0
- Improve Translate Live compatibility ([#401])
- Fix blog follower count in sidebar ([#400])

### 3.1.9
- Fix bug with loading the main theme ([#398])

Expand Down Expand Up @@ -150,6 +154,8 @@ There is a cache of your friends post in form of a Custom Post Type friend_post
- Fix 404 on the New private post widget props @liviacarolgouvea ([#361])
- Improve ghost.org ActivityPub compatibility ([#356])

[#401]: https://github.com/akirk/friends/pull/401
[#400]: https://github.com/akirk/friends/pull/400
[#398]: https://github.com/akirk/friends/pull/398
[#396]: https://github.com/akirk/friends/pull/396
[#395]: https://github.com/akirk/friends/pull/395
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: 3.1.9
* Version: 3.2.0
* Requires PHP: 5.6
* Description: A social network between WordPresses. Privacy focused, by itself a self-hosted RSS++ reader with notifications.
Expand All @@ -25,7 +25,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', '3.1.9' );
define( 'FRIENDS_VERSION', '3.2.0' );

require_once __DIR__ . '/libs/Mf2/Parser.php';

Expand Down

0 comments on commit 975a86c

Please sign in to comment.