From 9b609eb197cf882941f2e19e6fff378b12a02a0c Mon Sep 17 00:00:00 2001 From: "Eloy Lafuente (stronk7)" Date: Fri, 23 Apr 2021 19:22:57 +0200 Subject: [PATCH] Bump to 20210423 (v3.0.1) - April's cool --- CHANGES.md | 13 +++++++++++++ version.php | 4 ++-- 2 files changed, 15 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index ed5ba173..5f16ce2e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,16 @@ +Changes in versions 3.0.1 (20210423) - April's cool +--------------------------------------------------- +- Various internal changes and improvements: + - Travis and GHA support updated. + - Support docker login to workaround anonymous pull limits. + - Added instructions to work with VSCode. + - Apply for own `coverage.php` to better define coverage reporting. +- [PR#132](https://github.com/moodlehq/moodle-local_codechecker/pull/132): jsonSerialize() is now a valid function name (Tobias Goltz). +- [PR#136](https://github.com/moodlehq/moodle-local_codechecker/pull/136): Added support for --exclude option in the CLI runner (Adrian Perez). +- [PR#139](https://github.com/moodlehq/moodle-local_codechecker/pull/139): Added check for `abstract/final/static` positioning in function declarations (stronk7). +- [PR#141](https://github.com/moodlehq/moodle-local_codechecker/pull/141): Deprecated `print_error()` (stronk7). +- [PR#143](https://github.com/moodlehq/moodle-local_codechecker/pull/143): Added support for `return new class extends` PHPDoc blocks (stronk7). + Changes in version 3.0.0 (20201127) - Welcome phpcs 3 ----------------------------------------------------- - Upgrade to PHP_CodeSniffer 3.5.8 (stronk7): diff --git a/version.php b/version.php index 3147f3ea..91b42fd2 100644 --- a/version.php +++ b/version.php @@ -24,8 +24,8 @@ defined('MOODLE_INTERNAL') || die; -$plugin->version = 2020112700; -$plugin->release = '3.0.0'; +$plugin->version = 2021042300; +$plugin->release = '3.0.1'; $plugin->maturity = MATURITY_STABLE; $plugin->requires = 2017111300; // Moodle 3.4 release and upwards. $plugin->component = 'local_codechecker';