From 15ae4fe74aeb657c77f614a6c0035db06d166b37 Mon Sep 17 00:00:00 2001 From: Phil Davis Date: Wed, 10 Jan 2024 14:25:49 +0545 Subject: [PATCH] chore: Prepare release 1.1.1 --- CHANGELOG.md | 13 +++++++++---- app/config/container.php | 2 +- sonar-project.properties | 2 +- 3 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5ad33c7..495778f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,14 +6,19 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). ## [Unreleased] -### Added +## [1.1.1] -- Added support for PHP 7.4 +### Changed + +- [#730](https://github.com/owncloud/updater/pull/730) - exit with success command line status 0 for not implemented methods +- Bump libraries + +## [1.1.0] ### Changed -* [#711](https://github.com/owncloud/updater/pull/711) - Always return an int from Symfony Command execute method -* Bump libraries +- [#711](https://github.com/owncloud/updater/pull/711) - Always return an int from Symfony Command execute method +- Bump libraries ## [1.0.1] diff --git a/app/config/container.php b/app/config/container.php index b066c2d..42422eb 100644 --- a/app/config/container.php +++ b/app/config/container.php @@ -155,7 +155,7 @@ }; $c['application'] = function ($c) { - $application = new Application('ownCloud updater', '1.1.0'); + $application = new Application('ownCloud updater', '1.1.1'); $application->setContainer($c); $application->addCommands($c['commands']); $application->setDefaultCommand($c['command.start']->getName()); diff --git a/sonar-project.properties b/sonar-project.properties index 8993f4a..4f59d44 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -1,7 +1,7 @@ # Organization and project keys are displayed in the right sidebar of the project homepage sonar.organization=owncloud-1 sonar.projectKey=owncloud_updater -sonar.projectVersion=1.1.0 +sonar.projectVersion=1.1.1 sonar.host.url=https://sonarcloud.io # =====================================================