Skip to content

Commit 9881936

Browse files
committed
Add changelog
1 parent 59de8c6 commit 9881936

File tree

2 files changed

+9
-6
lines changed

2 files changed

+9
-6
lines changed

CHANGELOG.md

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# 1.0.0 (2017-05-14)
2+
3+
Initial release of the library.

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -16,31 +16,31 @@ composer install tekill/env-diff
1616

1717
## Manual running
1818
### Actualize variables
19-
Compare `.env` with `.env.dist` and add missing variables to `.env` file
19+
Compare `.env` with `.env.dist` and add missing variables to `.env` file.
2020
```
2121
php ./vendor/bin/env-diff actualize
2222
```
2323

24-
Compare `.env` with `.env.example` and add missing variables to `.env` file
24+
Compare `.env` with `.env.example` and add missing variables to `.env` file.
2525
```
2626
php ./vendor/bin/env-diff actualize .env.example
2727
```
2828

29-
Compare `.env-target` with `.env.example` and add missing variables to `.env-target` file
29+
Compare `.env-target` with `.env.example` and add missing variables to `.env-target` file.
3030
```
3131
php ./vendor/bin/env-diff actualize .env.example .env-target
3232
```
3333

34-
If you want to delete outdated values just run command with `-k=false` option
34+
If you want to delete outdated values just run command with `-k=false` option.
3535

3636
```
3737
php ./vendor/bin/env-diff actualize -k=false
3838
```
3939

4040
### Show differences
41-
Command has same interface, arguments and options
41+
Command has same interface, arguments and options.
4242

43-
Compare `.env` with `.env.dist` and show differences between them
43+
Compare `.env` with `.env.dist` and show differences between them.
4444
```
4545
php ./vendor/bin/env-diff diff
4646
```

0 commit comments

Comments
 (0)