From 9f00e46fb8d4aa5a19fbab6542bc346d0389c31c Mon Sep 17 00:00:00 2001 From: Steve Grunwell Date: Wed, 5 Dec 2018 12:36:08 -0500 Subject: [PATCH 1/5] Add PHP 7.3 and 'nightly' to the Travis testing matrix --- .travis.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.travis.yml b/.travis.yml index e27032c..8d38d6f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,6 +6,8 @@ notifications: email: never php: + - nightly + - 7.3 - 7.2 - 7.1 - 7.0 From 20b8195da3c972fb32ecbb5d40069141a312e7f5 Mon Sep 17 00:00:00 2001 From: Steve Grunwell Date: Wed, 5 Dec 2018 12:42:08 -0500 Subject: [PATCH 2/5] Update the Runkit7 version to 1.0.9 --- bin/install-runkit.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/install-runkit.sh b/bin/install-runkit.sh index 2f4b1d3..c6e095b 100755 --- a/bin/install-runkit.sh +++ b/bin/install-runkit.sh @@ -3,7 +3,7 @@ # Automate the installation of Runkit7 in development and testing environments. # Enable users to set an explicit version. -[ "$1" ] && RUNKIT_VERSION=$1 || RUNKIT_VERSION="1.0.5b1" +[ "$1" ] && RUNKIT_VERSION=$1 || RUNKIT_VERSION="1.0.9" DOWNLOAD_FILENAME="runkit-${RUNKIT_VERSION}.tgz" From 91572e725afe3aa32438deda7e13cf8bfd034698 Mon Sep 17 00:00:00 2001 From: Steve Grunwell Date: Wed, 5 Dec 2018 12:50:17 -0500 Subject: [PATCH 3/5] Allow nightly PHP builds to fail --- .travis.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.travis.yml b/.travis.yml index 8d38d6f..11cddda 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,11 @@ php: - 7.1 - 7.0 +matrix: + fast_finish: true + allow_failures: + - php: nightly + install: - composer install --prefer-dist From 31bffaab3857704eda29730d143f623e882dd3b6 Mon Sep 17 00:00:00 2001 From: Steve Grunwell Date: Wed, 5 Dec 2018 14:15:27 -0500 Subject: [PATCH 4/5] Raise the minimum development version to PHP 7.1, since 7.0 is at EOL --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 93592ef..ee9da72 100644 --- a/composer.json +++ b/composer.json @@ -18,7 +18,7 @@ "source": "https://github.com/stevegrunwell/runkit7-installer" }, "require-dev": { - "php": "^7.0", + "php": "^7.1", "phpunit/phpunit": ">=6.0" }, "bin": [ From 4bce1917bd5a2ca2054d2b32d02d687e80510c6c Mon Sep 17 00:00:00 2001 From: Steve Grunwell Date: Wed, 5 Dec 2018 14:15:44 -0500 Subject: [PATCH 5/5] Add a changelog entry for version 1.1.1 --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index f2b73c2..ac886aa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [1.1.1] - 2018-12-05 + +* Add PHP 7.3 support by [upgrading Runkit 7 to version 1.0.9](https://github.com/runkit7/runkit7/releases/tag/1.0.9) ([#8]). + ## [1.1.0] - 2018-06-27 * Attempt to automatically create `runkit.ini` files upon installation ([#1]). @@ -17,8 +21,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. * Initial public release. [Unreleased]: https://github.com/stevegrunwell/runkit7-installer/compare/master...develop +[1.1.1]: https://github.com/stevegrunwell/runkit7-installer/releases/tag/v1.1.1 [1.1.0]: https://github.com/stevegrunwell/runkit7-installer/releases/tag/v1.1.0 [1.0.0]: https://github.com/stevegrunwell/runkit7-installer/releases/tag/v1.0.0 [#1]: https://github.com/stevegrunwell/runkit7-installer/issues/1 [#2]: https://github.com/stevegrunwell/runkit7-installer/issues/2 [#3]: https://github.com/stevegrunwell/runkit7-installer/issues/3 +[#8]: https://github.com/stevegrunwell/runkit7-installer/pull/8