From e47b415bc750649b9904ce57d55f56413d62e110 Mon Sep 17 00:00:00 2001 From: Tobias Nyholm Date: Tue, 3 Jan 2017 11:24:53 +0100 Subject: [PATCH 1/2] Adding branch alias and min stab=dev --- composer.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/composer.json b/composer.json index 38770cd9..277d84b1 100644 --- a/composer.json +++ b/composer.json @@ -40,5 +40,11 @@ "scripts": { "test": "vendor/bin/phpunit", "test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml" + }, + "minimum-stability": "dev", + "extra": { + "branch-alias": { + "dev-master": "0.3-dev" + } } } From 4e729d716bb866471bcdb88ab76831e9773a0052 Mon Sep 17 00:00:00 2001 From: Tobias Nyholm Date: Tue, 3 Jan 2017 11:25:02 +0100 Subject: [PATCH 2/2] Added changelog --- Changelog.md | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/Changelog.md b/Changelog.md index 2e359e17..9617910a 100644 --- a/Changelog.md +++ b/Changelog.md @@ -3,3 +3,32 @@ The change log describes what is "Added", "Removed", "Changed" or "Fixed" between each release. ## UNRELEASED + +## 0.2.0 + +### Added + +- `CatalogueWriter` +- Commands for downloading and syncing translations +- Added `Configuration` model to work with the `ConfigurationManager`. +- Implementation for all methods in the `StorageService` + +### Changed + +- `Translation\Bundle\Service\CatalogueFetcher` moved to `Translation\Bundle\Catalogue\CatalogueFetcher` +- Made most (if not all) classes final. +- `CatalogueFetcher` requires a `Configuration` object. + +### Removed + +- Dead code in the `SymfonyProfilerController` +- `FileStorage` was moved to `php-translation/symfony-storage` + +### Fixed + +- The bundle works without any configuration. +- You may have an config named "default". + +## 0.1.0 + +First release.