Skip to content

Commit 70bb0f6

Browse files
bocharsky-bwNyholm
andauthored
Prepare release 0.12.2 (#418)
* Prepare release 0.12.2 * Fix order of commands in yaml definition * Updated changelog Co-authored-by: Nyholm <tobias.nyholm@gmail.com>
1 parent d0f17d7 commit 70bb0f6

File tree

2 files changed

+15
-5
lines changed

2 files changed

+15
-5
lines changed

Changelog.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,20 @@
22

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

5-
## Unreleased
5+
## 0.12.2
6+
7+
### Added
8+
9+
- Support for PHP 8
10+
11+
### Fixed
12+
13+
- Add missing command definition #412
14+
- Fix typo in Tests/Functional/app/config/framework.yaml #413
615

716
### Removed
817

18+
- Support for Symfony 3
919
- Support for PHP 7.1
1020

1121
## 0.12.1

Resources/config/console.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,25 +9,25 @@ services:
99
tags:
1010
- { name: console.command, command: translation:check-missing }
1111

12-
Translation\Bundle\Command\DeleteObsoleteCommand:
12+
Translation\Bundle\Command\DeleteEmptyCommand:
1313
public: true
1414
arguments:
1515
- '@Translation\Bundle\Service\StorageManager'
1616
- '@Translation\Bundle\Service\ConfigurationManager'
1717
- '@Translation\Bundle\Catalogue\CatalogueManager'
1818
- '@Translation\Bundle\Catalogue\CatalogueFetcher'
1919
tags:
20-
- { name: console.command, command: translation:delete-obsolete }
20+
- { name: console.command, command: translation:delete-empty }
2121

22-
Translation\Bundle\Command\DeleteEmptyCommand:
22+
Translation\Bundle\Command\DeleteObsoleteCommand:
2323
public: true
2424
arguments:
2525
- '@Translation\Bundle\Service\StorageManager'
2626
- '@Translation\Bundle\Service\ConfigurationManager'
2727
- '@Translation\Bundle\Catalogue\CatalogueManager'
2828
- '@Translation\Bundle\Catalogue\CatalogueFetcher'
2929
tags:
30-
- { name: console.command, command: translation:delete-empty }
30+
- { name: console.command, command: translation:delete-obsolete }
3131

3232
Translation\Bundle\Command\DownloadCommand:
3333
public: true

0 commit comments

Comments
 (0)