diff --git a/CHANGELOG.md b/CHANGELOG.md index de4fe72..9816c54 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,9 +6,36 @@ This project adheres to [Semantic Versioning 2](http://semver.org/). ## [Unreleased] +## [0.2.0] - 2016-04-12 +This release adds Symfony application deployment support to Accompli. + +### Added +* Symfony deployment recipes and documentation. (#124) +* Documentation for `ComposerInstallTask`. (#101) +* `ExecuteCommandTask` to execute commands. (#108) +* `SSHAgentTask` initialize and manage an SSH agent. (#114) +* `YamlConfigurationTask` to create and update YAML configuration files. (#115) +* `ConnectionAdapterInterface::readLink` to read targets of symbolic links. (#120) +* Authentication functionality to `ComposerInstallTask`. (#112) +* Stream wrappers to easily access Accompli recipes. (#107, #111) +* Compatibility with Symfony 3 components. (#110) + +### Changed +* Console output verbosities of tasks to provide better debug logging. (#117) +* `SSHConnectionAdapterInterface::executeCommand` to persist state. (#113) +* `ConnectionAdapterInterface::executeCommand` interface for providing command arguments. (#105) + +### Fixed +* Current user detection in `SSHConnectionAdapter`. (#106) +* `DeployReleaseTask` listener method name. (#116) +* `DeployReleaseTask` to correctly read and handle targets of symbolic links. (#120) +* Misspellings in documentation. (#102) + + ## 0.1.0 - 2016-01-10 Initial Accompli release with basic tasks for installing and deploying a project on a local or remote location through SSH. -[Unreleased]: https://github.com/accompli/accompli/compare/0.1.0...HEAD \ No newline at end of file +[Unreleased]: https://github.com/accompli/accompli/compare/0.2.0...HEAD +[0.2.0]: https://github.com/accompli/accompli/compare/0.1.0...0.2.0 diff --git a/README.md b/README.md index 97be747..43a8938 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ An easy to use and extendable deployment tool for PHP projects. Run the following command to add the package to the composer.json of your project: ``` bash -$ composer require accompli/accompli:^0.1 --dev +$ composer require accompli/accompli --dev ``` #### Versioning diff --git a/docs/01-Getting-started.md b/docs/01-Getting-started.md index 3eab11e..97dfd10 100644 --- a/docs/01-Getting-started.md +++ b/docs/01-Getting-started.md @@ -27,7 +27,7 @@ Accompli is multi-platform and we strive to make it run equally well on Windows, Run the following command to add the package to the composer.json of your project: ``` bash -$ composer require accompli/accompli:dev-master --dev +$ composer require accompli/accompli --dev ``` ## Using Accompli