From aa388955b00d5e75a28e963e22d3e219c9606589 Mon Sep 17 00:00:00 2001 From: Julian Maurice Date: Mon, 15 Jun 2020 12:05:21 +0200 Subject: [PATCH] Bump version 2.0.0 --- CHANGELOG.md | 12 ++++++++++++ README.md | 2 +- bootstrap.php | 2 +- 3 files changed, 14 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6825383..d1f96d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,17 @@ 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). +## [2.0.0] - 2020-06-15 +### Added +- Added support for PHP 7.4 + +### Removed +- Removed support for PHP versions older than 7.2 + +### Changed +- Replaced deprecated jeremeamia/SuperClosure by opis/closure +- Updated PHPUnit to version 8 + ## [1.1.0] - 2018-10-31 ### Added - New command user-create @@ -292,6 +303,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## 0.1.0 - 2016-12-11 +[2.0.0]: https://github.com/biblibre/omeka-cli/compare/v1.1.0...v2.0.0 [1.1.0]: https://github.com/biblibre/omeka-cli/compare/v1.0.0...v1.1.0 [1.0.0]: https://github.com/biblibre/omeka-cli/compare/v1.0.0-beta.1...v1.0.0 [1.0.0-beta.1]: https://github.com/biblibre/omeka-cli/compare/v1.0.0-alpha.6...v1.0.0-beta.1 diff --git a/README.md b/README.md index 9164838..7743253 100644 --- a/README.md +++ b/README.md @@ -35,7 +35,7 @@ commands. ## Requirements -- PHP (>= 5.6) with the following extensions: +- PHP (>= 7.2) with the following extensions: - Zip - PDO and the PDO_MYSQL driver - git diff --git a/bootstrap.php b/bootstrap.php index acfcb97..14bac6a 100644 --- a/bootstrap.php +++ b/bootstrap.php @@ -6,4 +6,4 @@ require_once __DIR__ . '/vendor/autoload.php'; } -define('OMEKACLI_VERSION', '1.1.0'); +define('OMEKACLI_VERSION', '2.0.0');