Skip to content

Commit 6339c4e

Browse files
committed
Update stable version and tested up to
1 parent e65d625 commit 6339c4e

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

.wp-env.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
{
22
"$schema": "https://schemas.wp.org/trunk/wp-env.json",
33
"testsEnvironment": false,
4-
"core": "WordPress/WordPress#6.3",
4+
"port": 8888,
5+
"core": "WordPress/WordPress#7.0-branch",
56
"plugins": ["./rsscloud"],
67
"phpVersion": "7.4",
78
"phpmyadminPort": 9000,

.wp-env.test.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
"$schema": "https://schemas.wp.org/trunk/wp-env.json",
33
"testsEnvironment": false,
44
"port": 8889,
5-
"core": "WordPress/WordPress#6.3",
5+
"core": "WordPress/WordPress#7.0-branch",
66
"plugins": ["./rsscloud"],
7+
"phpVersion": "7.4",
78
"config": {
89
"WP_DEBUG": false,
910
"SCRIPT_DEBUG": false

rsscloud/readme.txt

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Contributors: josephscott, automattic
33
Tags: rss
44
Requires at least: 2.8
5-
Tested up to: 6.9
6-
Stable tag: 0.5.0
5+
Tested up to: 7.0
6+
Stable tag: 0.5.1
77
License: GPL-2.0-or-later
88
License URI: https://www.gnu.org/licenses/gpl-2.0.html
99

@@ -15,6 +15,9 @@ Adds RSSCloud ( http://rsscloud.co/ ) capabilities to your RSS feed.
1515

1616
== Changelog ==
1717

18+
= 0.5.1 =
19+
* Fix loose comparisons to use strict equality operators per WordPress coding standards
20+
1821
= 0.5.0 =
1922
* Updates to support PHP 8+
2023
* Check for http scheme in the $notify_url, add it if missing

rsscloud/rsscloud.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: RSS Cloud
44
Plugin URI:
55
Description: Ping RSS Cloud servers
6-
Version: 0.5.0
6+
Version: 0.5.1
77
Author: Joseph Scott
88
Author URI: http://josephscott.org/
99
License: GPL-2.0-or-later
@@ -17,7 +17,7 @@
1717
// define( 'RSSCLOUD_NOTIFICATIONS_INSTANT', true );
1818

1919
if ( ! defined( 'RSSCLOUD_USER_AGENT' ) ) {
20-
define( 'RSSCLOUD_USER_AGENT', 'WordPress/RSSCloud 0.5.0' );
20+
define( 'RSSCLOUD_USER_AGENT', 'WordPress/RSSCloud 0.5.1' );
2121
}
2222

2323
if ( ! defined( 'RSSCLOUD_MAX_FAILURES' ) ) {

0 commit comments

Comments
 (0)