From af9c09e440dedce043c6fcbf1a03593b9f647917 Mon Sep 17 00:00:00 2001 From: Daniel Rudolf Date: Sun, 29 Mar 2020 16:04:38 +0200 Subject: [PATCH 1/5] Add composer.json branch alias for Pico 3.0 --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 260467a..02b45aa 100644 --- a/composer.json +++ b/composer.json @@ -51,7 +51,8 @@ }, "extra": { "branch-alias": { - "dev-master": "2.1.x-dev" + "dev-master": "2.1.x-dev", + "dev-pico-3.0": "3.0.x-dev" } } } From 6c746fabb6cd3b6c1b0fae3242ba3de065a6e337 Mon Sep 17 00:00:00 2001 From: Daniel Rudolf Date: Fri, 10 Apr 2020 23:14:33 +0200 Subject: [PATCH 2/5] Fix DummyPlugin declaring API version 3 --- plugins/DummyPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/DummyPlugin.php b/plugins/DummyPlugin.php index 415103b..10d39b3 100644 --- a/plugins/DummyPlugin.php +++ b/plugins/DummyPlugin.php @@ -28,7 +28,7 @@ class DummyPlugin extends AbstractPicoPlugin * * @var int */ - const API_VERSION = 2; + const API_VERSION = 3; /** * This plugin is disabled by default From 0ddde859e8e7c857f70f52f3c5ae2e81d5041e65 Mon Sep 17 00:00:00 2001 From: Daniel Rudolf Date: Fri, 10 Apr 2020 23:17:01 +0200 Subject: [PATCH 3/5] Update CHANGELOG.md --- CHANGELOG.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 96784d8..a44f9a4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -16,6 +16,13 @@ Pico Changelog `PicoDeprecated`'s changelog. Please note that BC-breaking changes are only possible with a new major version. +### Version 2.1.2 +Released: 2020-04-10 + +``` +* [Fixed] Fix DummyPlugin declaring API version 3 +``` + ### Version 2.1.1 Released: 2019-12-31 From b892d6bb116aa50118ea7f8600bb437a5b3a3558 Mon Sep 17 00:00:00 2001 From: Daniel Rudolf Date: Fri, 10 Apr 2020 23:17:45 +0200 Subject: [PATCH 4/5] Update Pico::VERSION and Pico::VERSION_ID --- lib/Pico.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Pico.php b/lib/Pico.php index e19cbb3..efb5b33 100644 --- a/lib/Pico.php +++ b/lib/Pico.php @@ -49,14 +49,14 @@ class Pico * * @var string */ - const VERSION = '2.1.1'; + const VERSION = '2.1.2'; /** * Pico version ID * * @var int */ - const VERSION_ID = 20101; + const VERSION_ID = 20102; /** * Pico API version