diff --git a/CHANGELOG.md b/CHANGELOG.md index 7984a72..eae59c2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [1.1.1] - 2016-11-11 + +### Added +- Switched to full array notation, allowing legacy PHP support +- composer update tracks latest Symfony 3 YAML in local sandbox (composer.lock) + ## [1.1.0] - 2016-09-12 ### Added @@ -7,31 +13,7 @@ - box.json manifest for building PHAR binaries - Enabled support for Symfony 3 YAML component -### Deprecated -- Nothing - -### Fixed -- Nothing - -### Removed -- Nothing - -### Security -- Nothing - ## [1.0.0] - 2016-03-02 ### Added - Initial release - -### Deprecated -- Nothing - -### Fixed -- Nothing - -### Removed -- Nothing - -### Security -- Nothing diff --git a/composer.lock b/composer.lock index 53dc7e2..1bc363c 100644 --- a/composer.lock +++ b/composer.lock @@ -9,16 +9,16 @@ "packages": [ { "name": "symfony/yaml", - "version": "v3.1.4", + "version": "v3.1.6", "source": { "type": "git", "url": "https://github.com/symfony/yaml.git", - "reference": "f291ed25eb1435bddbe8a96caaef16469c2a092d" + "reference": "7ff51b06c6c3d5cc6686df69004a42c69df09e27" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/symfony/yaml/zipball/f291ed25eb1435bddbe8a96caaef16469c2a092d", - "reference": "f291ed25eb1435bddbe8a96caaef16469c2a092d", + "url": "https://api.github.com/repos/symfony/yaml/zipball/7ff51b06c6c3d5cc6686df69004a42c69df09e27", + "reference": "7ff51b06c6c3d5cc6686df69004a42c69df09e27", "shasum": "" }, "require": { @@ -54,7 +54,7 @@ ], "description": "Symfony Yaml Component", "homepage": "https://symfony.com", - "time": "2016-09-02 02:12:52" + "time": "2016-10-24 18:41:13" } ], "packages-dev": [], diff --git a/src/yaml-lint.php b/src/yaml-lint.php index 1b75281..b2967ce 100755 --- a/src/yaml-lint.php +++ b/src/yaml-lint.php @@ -15,7 +15,7 @@ use Symfony\Component\Yaml\Yaml; define('APP_NAME', 'yaml-lint'); -define('APP_VERSION', '1.1.0'); +define('APP_VERSION', '1.1.1'); define('ANSI_BLD', 01); define('ANSI_UDL', 04);