Skip to content

Commit

Permalink
Add support for php >= 7.2
Browse files Browse the repository at this point in the history
  • Loading branch information
marcbelletre committed Oct 18, 2023
1 parent d215a5a commit 0b47c4b
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 55 deletions.
4 changes: 2 additions & 2 deletions acf-rrule.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Plugin Name: ACF RRule Field
Plugin URI: https://github.com/marcbelletre/acf-rrule
Description: Create recurring rules with a single ACF field
Version: 1.3.0
Version: 1.3.1
Author: Marc Bellêtre
Author URI: https://pixelparfait.fr
License: MIT
Expand Down Expand Up @@ -44,7 +44,7 @@ public function __construct()
// Settings
// - these will be passed into the field class.
$this->settings = [
'version' => '1.3.0',
'version' => '1.3.1',
'url' => plugin_dir_url(__FILE__),
'path' => plugin_dir_path(__FILE__),
];
Expand Down
5 changes: 4 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,12 @@
},
"require": {
"simshaun/recurr": "^5.0",
"composer/installers": "~1.0"
"composer/installers": "^2.0"
},
"config": {
"platform": {
"php": "7.2"
},
"allow-plugins": {
"composer/installers": true
}
Expand Down
81 changes: 31 additions & 50 deletions composer.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ Contributors: marcbelletre, pedromendonca
Tags: acf, rrule, recurrence, date, calendar
Requires at least: 4.7
Tested up to: 6.3
Requires PHP: 5.6
Stable tag: 1.3.0
Requires PHP: 7.2
Stable tag: 1.3.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand All @@ -31,6 +31,9 @@ This plugin requires ACF or ACF Pro to work.

== Changelog ==

= 1.3.1 =
* Add support for php >= 7.2

= 1.3.0 =
* Add time picker options
* Fix compatibility with ACF Extended plugin
Expand Down

0 comments on commit 0b47c4b

Please sign in to comment.