Skip to content

Commit bb894f3

Browse files
committed
Add a changelog and bump documented version to 2.0
1 parent 4813d51 commit bb894f3

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,12 @@ To set up a custom WordPress build package to use this as a custom installer, ad
1818
```json
1919
"type": "wordpress-core",
2020
"require": {
21-
"johnpbloch/wordpress-core-installer": "^1.0"
21+
"johnpbloch/wordpress-core-installer": "^2.0"
2222
}
2323
```
2424

25+
If you need to maintain support for PHP versions lower than 5.6 (not recommended!), use `^1.0` as your version constraint in the above.
26+
2527
By default, this package will install a `wordpress-core` type package in the `wordpress` directory. To change this you can add the following to either your custom WordPress core type package or the root composer package:
2628

2729
```json
@@ -43,3 +45,16 @@ The root composer package can also declare custom paths as an object keyed by pa
4345

4446
### License
4547
This is licensed under the GPL version 2 or later.
48+
49+
### Changelog
50+
51+
##### 2.0.0
52+
- Added support for Composer v2. Special thanks to @Ayesh for the original pull request to add this support.
53+
- Bumped minimum required PHP version to 5.6 (same as WP). If you need to stick with an older PHP version, you're probably ok with also sticking with an older version of Composer and can continue to use `^1.0` as your version constraint.
54+
- Other various fixes and improvements to README, tests, etc.
55+
56+
##### 1.0.0
57+
- Initial stable release
58+
- Added tests and CI
59+
- Support added for custom vendor directories
60+
- Added sanity check for overwriting sensitive directories

0 commit comments

Comments
 (0)