Skip to content

Commit

Permalink
Version bump + Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
akirk committed Sep 20, 2024
1 parent 5efe971 commit e1aff6b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
### 2.9.7
- Fix boost button ([#353])

### 2.9.6
- Allow creating multiple dashboard widgets in ([#349])
- Add support for double-encoded HTML entities in RSS in ([#352])
Expand Down Expand Up @@ -232,6 +235,7 @@
- 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

[#353]: https://github.com/akirk/friends/pull/353
[#349]: https://github.com/akirk/friends/pull/349
[#352]: https://github.com/akirk/friends/pull/352
[#351]: https://github.com/akirk/friends/pull/351
Expand Down
6 changes: 5 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.6
- License: GPL-2.0-or-later
- Stable tag: 2.9.6
- Stable tag: 2.9.7

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

## Changelog

### 2.9.7
- Fix boost button ([#353])

### 2.9.6
- Allow creating multiple dashboard widgets in ([#349])
- Add support for double-encoded HTML entities in RSS in ([#352])
Expand All @@ -119,6 +122,7 @@ There is a cache of your friends post in form of a Custom Post Type friend_post
- Fix the all postids query ([#335])
- Don't define a wp-editor dependency ([#332])

[#353]: https://github.com/akirk/friends/pull/353
[#349]: https://github.com/akirk/friends/pull/349
[#352]: https://github.com/akirk/friends/pull/352
[#351]: https://github.com/akirk/friends/pull/351
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.9.6
* Version: 2.9.7
* 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', '2.9.6' );
define( 'FRIENDS_VERSION', '2.9.7' );

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

Expand Down

0 comments on commit e1aff6b

Please sign in to comment.