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 31, 2024
1 parent ef3261e commit ffc9039
Show file tree
Hide file tree
Showing 3 changed files with 43 additions and 3 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
### 2.9.4
- Fix an out of memory error in get_author_posts_url ([#339])
- Fix ignore notification settings when no `friend_listed` passed by @logicalor in ([#324])
- Null coalesce `$html` to empty string to avoid deprecation notices by @logicalor in ([#325])
- Support the WordPress PHPCS ruleset ([#329]), props @apermo
- Improve PHPCS WordPress compliance ([#330])
- Post Cache Admin: Only show subscription author ([#333])
- Add automatic-status menu slug ([#334])
- Fix the all postids query ([#335])
- Don't define a wp-editor dependency ([#332])

### 2.9.3
- Fix Rewrite for Categories ([#322])
- Show Comments and the Form on Permalink pages ([#321])
Expand Down Expand Up @@ -241,6 +252,15 @@
- Add Emoji reactions
- Add blog to blog messaging

[#339]: https://github.com/akirk/friends/pull/339
[#324]: https://github.com/akirk/friends/pull/324
[#325]: https://github.com/akirk/friends/pull/325
[#329]: https://github.com/akirk/friends/pull/329
[#330]: https://github.com/akirk/friends/pull/330
[#333]: https://github.com/akirk/friends/pull/333
[#334]: https://github.com/akirk/friends/pull/334
[#335]: https://github.com/akirk/friends/pull/335
[#332]: https://github.com/akirk/friends/pull/332
[#322]: https://github.com/akirk/friends/pull/322
[#321]: https://github.com/akirk/friends/pull/321
[#320]: https://github.com/akirk/friends/pull/320
Expand Down
22 changes: 21 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.5
- License: GPL-2.0-or-later
- Stable tag: 2.9.3
- Stable tag: 2.9.4

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

## Changelog

### 2.9.4
- Fix an out of memory error in get_author_posts_url ([#339])
- Fix ignore notification settings when no `friend_listed` passed by @logicalor in ([#324])
- Null coalesce `$html` to empty string to avoid deprecation notices by @logicalor in ([#325])
- Support the WordPress PHPCS ruleset ([#329]), props @apermo
- Improve PHPCS WordPress compliance ([#330])
- Post Cache Admin: Only show subscription author ([#333])
- Add automatic-status menu slug ([#334])
- Fix the all postids query ([#335])
- Don't define a wp-editor dependency ([#332])

### 2.9.3
- Fix Rewrite for Categories ([#322])
- Show Comments and the Form on Permalink pages ([#321])
Expand All @@ -116,6 +127,15 @@ There is a cache of your friends post in form of a Custom Post Type friend_post
### 2.9.0
- Fix issues discovered by the plugin check plugin ([#301])

[#339]: https://github.com/akirk/friends/pull/339
[#324]: https://github.com/akirk/friends/pull/324
[#325]: https://github.com/akirk/friends/pull/325
[#329]: https://github.com/akirk/friends/pull/329
[#330]: https://github.com/akirk/friends/pull/330
[#333]: https://github.com/akirk/friends/pull/333
[#334]: https://github.com/akirk/friends/pull/334
[#335]: https://github.com/akirk/friends/pull/335
[#332]: https://github.com/akirk/friends/pull/332
[#322]: https://github.com/akirk/friends/pull/322
[#321]: https://github.com/akirk/friends/pull/321
[#320]: https://github.com/akirk/friends/pull/320
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.3
* Version: 2.9.4
* 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.3' );
define( 'FRIENDS_VERSION', '2.9.4' );

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

Expand Down

0 comments on commit ffc9039

Please sign in to comment.