Skip to content

Commit 99fa0cb

Browse files
committedJun 1, 2017
1.0.1 release
1 parent b2e141a commit 99fa0cb

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed
 

‎.travis.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
language: php
22

3+
dist: trusty
4+
35
cache:
46
directories:
57
- $HOME/.composer/cache/files

‎CHANGELOG.md

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
11
# 1.0.0 (2017-05-14)
22

3-
Initial release of the library.
3+
Initial release of the library.
4+
5+
# 1.0.1 (2017-06-01)
6+
7+
Update README.md
8+
Fix travis.yml
9+
Fix bug in ComposerIO
10+
Update output messages

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ php ./vendor/bin/env-diff diff
5050
Add code block in `composer.json`:
5151
```$json
5252
"scripts": {
53-
"post-update-cmd": "Lf\\EnvDiff\\Composer\\ScriptHandler::actualizeEnv"
53+
"post-update-cmd": "LF\\EnvDiff\\Composer\\ScriptHandler::actualizeEnv"
5454
}
5555
```
5656

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

‎src/Console/Application.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ class Application extends BaseApplication
1313
*/
1414
public function __construct()
1515
{
16-
parent::__construct('Env diff', '1.0.0');
16+
parent::__construct('Env diff', '1.0.1');
1717

1818
$this->setAutoExit(true);
1919
$this->add(new DiffCommand('diff'));

0 commit comments

Comments
 (0)
Please sign in to comment.