From d7dbfd8fa7581bc01ad002c7f18b32556ea0ffcb Mon Sep 17 00:00:00 2001 From: Sven Luijten Date: Fri, 23 Jun 2017 23:28:45 +0200 Subject: [PATCH] release 0.2.0 --- CHANGELOG.md | 9 +++++++-- bin/forge | 2 +- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 94ae268..17f5647 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,9 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## Unreleased +## [Unreleased] + +## [0.2.0] - 2017-06-23 ### Added - `get:env` command - `update:env` command @@ -17,6 +19,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ### Changed - Remove need for custom `->execute()` method on commands +- Loads of the commands' namespaces +- Folder structure in `/src/Commands` ### Fixed - Minor typos in documentation @@ -103,7 +107,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - `update:site` command - `delete:site` command -[Unreleased]: https://github.com/svenluijten/forge-cli/compare/0.1.5...HEAD +[Unreleased]: https://github.com/svenluijten/forge-cli/compare/0.2.0...HEAD +[0.2.0]: https://github.com/svenluijten/forge-cli/compare/0.1.5...0.2.0 [0.1.5]: https://github.com/svenluijten/forge-cli/compare/0.1.4...0.1.5 [0.1.4]: https://github.com/svenluijten/forge-cli/compare/0.1.3...0.1.4 [0.1.3]: https://github.com/svenluijten/forge-cli/compare/0.1.2...0.1.3 diff --git a/bin/forge b/bin/forge index ad1d21e..c1a825a 100644 --- a/bin/forge +++ b/bin/forge @@ -13,7 +13,7 @@ if (file_exists(__DIR__.'/../../../autoload.php')) { require __DIR__.'/../vendor/autoload.php'; } -$app = new Symfony\Component\Console\Application('Forge CLI', '0.1.5'); +$app = new Symfony\Component\Console\Application('Forge CLI', '0.2.0'); $app->addCommands([ new Authorize,