Skip to content

Commit fab07e2

Browse files
committed
chore: release 1.3.0
1 parent 553b358 commit fab07e2

File tree

3 files changed

+47
-3
lines changed

3 files changed

+47
-3
lines changed

CHANGELOG.md

+39-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,40 @@
1-
## [1.2.0] - 2018-10-21
1+
# Changelog
22

3-
- Fix: Issue when same chunk is manifested for multiple entry-points (#1).
3+
All notable changes to this project will be documented in this file.
4+
5+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
6+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
7+
8+
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
9+
10+
## [1.3.0](https://github.com/swashata/wpackio-enqueue/compare/1.2.0...1.3.0) - 2018-10-24
11+
12+
### Fixed
13+
14+
- feat: add recursive dependencies for entrypoint chunks [`#2`](https://github.com/swashata/wpackio-enqueue/issues/2)
15+
16+
## [1.2.0](https://github.com/swashata/wpackio-enqueue/compare/1.1.0...1.2.0) - 2018-10-21
17+
18+
### Fixed
19+
20+
- fix: issue when same chunk is applied for different entry-points [`#1`](https://github.com/swashata/wpackio-enqueue/issues/1)
21+
22+
## [1.1.0](https://github.com/swashata/wpackio-enqueue/compare/1.0.1...1.1.0) - 2018-10-20
23+
24+
### Commits
25+
26+
- feat: use unique handle for runtime.js [`168f281`](https://github.com/swashata/wpackio-enqueue/commit/168f2816232b2eb2c2686ef51603eb253981f631)
27+
28+
## [1.0.1](https://github.com/swashata/wpackio-enqueue/compare/1.0.0...1.0.1) - 2018-10-13
29+
30+
### Commits
31+
32+
- chore: ignore some stuff for composer [`1df013e`](https://github.com/swashata/wpackio-enqueue/commit/1df013e09974fac27cc9f9cb28da769a44d958d8)
33+
34+
## 1.0.0 - 2018-10-13
35+
36+
### Commits
37+
38+
- chore: add contribution guideline [`e294d56`](https://github.com/swashata/wpackio-enqueue/commit/e294d56f79e4f719bb7ca0815fb06b045429794e)
39+
- chore: add links to doc [`25f01fa`](https://github.com/swashata/wpackio-enqueue/commit/25f01faa73b57f7129fc1ebd02d2fa67ffaa074e)
40+
- chore: badges, and linting in ci [`ad28dd8`](https://github.com/swashata/wpackio-enqueue/commit/ad28dd8acf23cad3cf855ef25d0bf201a52d79bc)

CONTRIBUTING.md

+6
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,12 @@ Now let's dive in.
2020
3. Update the README.md with details of changes to the interface, this includes new environment
2121
variables, exposed ports, useful file locations and container parameters.
2222

23+
## Release a version
24+
25+
1. Ensure you have `npx` installed.
26+
2. Run `composer run-script changelog <new version>`, like `composer run-script changelog 2.0.0`.
27+
3. Commit the changelog and tag it.
28+
2329
# Conduct
2430

2531
We are committed to providing a friendly, safe and welcoming environment for

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
},
2828
"scripts": {
2929
"test": "phpunit --colors=auto",
30-
"lint": "phpcs -v inc/*"
30+
"lint": "phpcs -v inc/*",
31+
"changelog": "npx auto-changelog --template keepachangelog -v"
3132
},
3233
"archive": {
3334
"exclude": [

0 commit comments

Comments
 (0)