Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Prepare release 1.1.1 #733

Merged
merged 1 commit into from
Jun 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 9 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]

Expand Down
2 changes: 1 addition & 1 deletion app/config/container.php
Original file line number Diff line number Diff line change
Expand Up @@ -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());
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
@@ -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

# =====================================================
Expand Down