Skip to content

Prepare release 0.12.2 #418

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

Merged
merged 3 commits into from
Mar 26, 2021
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
12 changes: 11 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,20 @@

The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release.

## Unreleased
## 0.12.2

### Added

- Support for PHP 8

### Fixed

- Add missing command definition #412
- Fix typo in Tests/Functional/app/config/framework.yaml #413

### Removed

- Support for Symfony 3
- Support for PHP 7.1

## 0.12.1
Expand Down
8 changes: 4 additions & 4 deletions Resources/config/console.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,25 +9,25 @@ services:
tags:
- { name: console.command, command: translation:check-missing }

Translation\Bundle\Command\DeleteObsoleteCommand:
Translation\Bundle\Command\DeleteEmptyCommand:
public: true
arguments:
- '@Translation\Bundle\Service\StorageManager'
- '@Translation\Bundle\Service\ConfigurationManager'
- '@Translation\Bundle\Catalogue\CatalogueManager'
- '@Translation\Bundle\Catalogue\CatalogueFetcher'
tags:
- { name: console.command, command: translation:delete-obsolete }
- { name: console.command, command: translation:delete-empty }

Translation\Bundle\Command\DeleteEmptyCommand:
Translation\Bundle\Command\DeleteObsoleteCommand:
public: true
arguments:
- '@Translation\Bundle\Service\StorageManager'
- '@Translation\Bundle\Service\ConfigurationManager'
- '@Translation\Bundle\Catalogue\CatalogueManager'
- '@Translation\Bundle\Catalogue\CatalogueFetcher'
tags:
- { name: console.command, command: translation:delete-empty }
- { name: console.command, command: translation:delete-obsolete }

Translation\Bundle\Command\DownloadCommand:
public: true
Expand Down