Skip to content

Commit 0a51e67

Browse files
committed
version bump
1 parent 2e40a02 commit 0a51e67

File tree

5 files changed

+8
-14
lines changed

5 files changed

+8
-14
lines changed

.github/workflows/wp-phpunit.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,7 @@ jobs:
1717
options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=10s --health-retries=10
1818
strategy:
1919
matrix:
20-
php-versions: ['7.0', '7.1', '7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
21-
include:
22-
- wp-version: latest
23-
- wp-version: '6.5'
24-
php-versions: '7.0'
25-
- wp-version: '6.5'
26-
php-versions: '7.1'
20+
php-versions: ['7.2', '7.3', '7.4', '8.0', '8.1', '8.2', '8.3']
2721
steps:
2822
- name: Install svn
2923
run: |

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "pfefferle/wordpress-webmention",
33
"description": "A Webmention plugin for WordPress https://wordpress.org/plugins/webmention/",
44
"require": {
5-
"php": ">=7.0",
5+
"php": ">=7.2",
66
"composer/installers": "^1.0 || ^2.0"
77
},
88
"type": "wordpress-plugin",

phpcs.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<exclude-pattern>*/node_modules/*</exclude-pattern>
1212
<exclude-pattern>*/tests/*</exclude-pattern>
1313
<rule ref="PHPCompatibility"/>
14-
<config name="testVersion" value="7.0-"/>
14+
<config name="testVersion" value="7.2-"/>
1515
<rule ref="WordPress-Core" />
1616
<rule ref="PHPCompatibilityWP"/>
1717
<config name="minimum_supported_wp_version" value="6.3"/>

readme.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
- Donate link: https://notiz.blog/donate/
55
- Tags: webmention, pingback, trackback, linkback, indieweb
66
- Requires at least: 6.3
7-
- Tested up to: 6.7
8-
- Stable tag: 5.3.3
9-
- Requires PHP: 7.0
7+
- Tested up to: 6.8
8+
- Stable tag: 5.4.0
9+
- Requires PHP: 7.2
1010
- License: MIT
1111
- License URI: https://opensource.org/licenses/MIT
1212

webmention.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Webmention support for WordPress posts
66
* Author: Matthias Pfefferle
77
* Author URI: https://notiz.blog/
8-
* Version: 5.3.3
8+
* Version: 5.4.0
99
* License: MIT
1010
* License URI: https://opensource.org/licenses/MIT
1111
* Text Domain: webmention
@@ -14,7 +14,7 @@
1414

1515
namespace Webmention;
1616

17-
\define( 'WEBMENTION_VERSION', '5.3.3' );
17+
\define( 'WEBMENTION_VERSION', '5.4.0' );
1818

1919
\define( 'WEBMENTION_PLUGIN_DIR', \plugin_dir_path( __FILE__ ) );
2020
\define( 'WEBMENTION_PLUGIN_BASENAME', \plugin_basename( __FILE__ ) );

0 commit comments

Comments
 (0)