Skip to content

Commit

Permalink
1.0.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
Tekill committed Jun 1, 2017
1 parent b2e141a commit 99fa0cb
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
language: php

dist: trusty

cache:
directories:
- $HOME/.composer/cache/files
Expand Down
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
# 1.0.0 (2017-05-14)

Initial release of the library.
Initial release of the library.

# 1.0.1 (2017-06-01)

Update README.md
Fix travis.yml
Fix bug in ComposerIO
Update output messages
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ php ./vendor/bin/env-diff diff
Add code block in `composer.json`:
```$json
"scripts": {
"post-update-cmd": "Lf\\EnvDiff\\Composer\\ScriptHandler::actualizeEnv"
"post-update-cmd": "LF\\EnvDiff\\Composer\\ScriptHandler::actualizeEnv"
}
```

Expand Down Expand Up @@ -108,7 +108,7 @@ JSON array with multiple configurations inside it instead of a configuration obj
Add code block in `composer.json`:
```$json
"scripts": {
"post-update-cmd": "Lf\\EnvDiff\\Composer\\ScriptHandler::showDifference"
"post-update-cmd": "LF\\EnvDiff\\Composer\\ScriptHandler::showDifference"
}
```

Expand Down
2 changes: 1 addition & 1 deletion src/Console/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ class Application extends BaseApplication
*/
public function __construct()
{
parent::__construct('Env diff', '1.0.0');
parent::__construct('Env diff', '1.0.1');

$this->setAutoExit(true);
$this->add(new DiffCommand('diff'));
Expand Down

0 comments on commit 99fa0cb

Please sign in to comment.