Skip to content
This repository has been archived by the owner on Apr 16, 2024. It is now read-only.

Prepare 0.2.0 release #125

Merged
merged 2 commits into from
Apr 12, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
29 changes: 28 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
[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
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion docs/01-Getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down