Skip to content

Commit

Permalink
Prepare release 0.12.2 (#418)
Browse files Browse the repository at this point in the history
* Prepare release 0.12.2

* Fix order of commands in yaml definition

* Updated changelog

Co-authored-by: Nyholm <[email protected]>
  • Loading branch information
bocharsky-bw and Nyholm authored Mar 26, 2021
1 parent d0f17d7 commit 70bb0f6
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 5 deletions.
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

0 comments on commit 70bb0f6

Please sign in to comment.