Skip to content
This repository was archived by the owner on Nov 6, 2025. It is now read-only.

Commit 2c3314a

Browse files
committed
chore(release): 🚀 1.0.0
1 parent b10709f commit 2c3314a

File tree

4 files changed

+2304
-3526
lines changed

4 files changed

+2304
-3526
lines changed

.versionrc.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,5 @@ module.exports = {
3131
skip: {
3232
changelog: true,
3333
},
34+
commitAll: true,
3435
};

CHANGELOG.md

Lines changed: 40 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,52 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5-
## [0.1.3](https://github.com/react-boilerplate/react-boilerplate-cra-template/compare/v0.1.2...v0.1.3) (2020-05-05)
5+
## [1.0.0](https://github.com/react-boilerplate/react-boilerplate-cra-template/compare/v0.1.3...v1.0.0) (2020-05-18)
6+
7+
### Features
8+
9+
- ✨ added media query utility ([c776cdd](https://github.com/react-boilerplate/react-boilerplate-cra-template/commit/c776cdd7e55295d304268cc0821779c9720f0fdd))
10+
11+
### Bug Fixes
12+
13+
- 🐛 removed `connected-react-router` ([#28](https://github.com/react-boilerplate/react-boilerplate-cra-template/issues/28)) ([f6a0350](https://github.com/react-boilerplate/react-boilerplate-cra-template/commit/f6a0350dc5c6203a1b1c47d2b420245b7251bd05))
14+
- 🐛 supporting css prop in styled-components ([57895a3](https://github.com/react-boilerplate/react-boilerplate-cra-template/commit/57895a3ca97acc7e6dda2a14b093d669d3be4e9e)), closes [#27](https://github.com/react-boilerplate/react-boilerplate-cra-template/issues/27)
15+
16+
### Documentation
17+
18+
- 📚️ added example repo to readme ([5f5e413](https://github.com/react-boilerplate/react-boilerplate-cra-template/commit/5f5e4133b85f5a7c6bbbbae24fd0c6361ad9e151))
19+
- 📚️ added FAQ ([47d81b3](https://github.com/react-boilerplate/react-boilerplate-cra-template/commit/47d81b311e7c7d2a1f68e55af6d7e10e37526759))
20+
- 📚add netlify deployment ([#23](https://github.com/react-boilerplate/react-boilerplate-cra-template/issues/23)) ([fb9860d](https://github.com/react-boilerplate/react-boilerplate-cra-template/commit/fb9860defd9704d2941a2ef7bdb9c13ed462786b))
21+
22+
### Internals
23+
24+
**This section only concerns the contributors of this project. You can ignore these changes since they DO NOT create changes in the CRA Template**
25+
26+
<details><summary>Click to see the internal changes</summary>
27+
28+
- ♻️ fix typo ([a4a4f50](https://github.com/react-boilerplate/react-boilerplate-cra-template/commit/a4a4f5076abc31d9cad612c0c4daab7d37b753b4)), closes [#25](https://github.com/react-boilerplate/react-boilerplate-cra-template/issues/25)
29+
- ♻️ fix typo in toolkit.tsx comment ([#18](https://github.com/react-boilerplate/react-boilerplate-cra-template/issues/18)) ([1867a5b](https://github.com/react-boilerplate/react-boilerplate-cra-template/commit/1867a5b48fcd3b8d54ddd3a07cddf5ececc36c91))
30+
- ♻️ updated clean script name ([3cedb94](https://github.com/react-boilerplate/react-boilerplate-cra-template/commit/3cedb9494d242cc48fc605c2002d1cf173c14c55))
31+
- ♻️ updated readme ([765a897](https://github.com/react-boilerplate/react-boilerplate-cra-template/commit/765a8972733a556bd39b414cbbe1ff9458864f6a))
32+
- 🔧 added commit hook verify startingTemplate changes ([e0240c8](https://github.com/react-boilerplate/react-boilerplate-cra-template/commit/e0240c83f1f5d0a7fd370759c6114b25bdb5044c))
33+
- 🔧 added script for creating changelog ([4ed9ed5](https://github.com/react-boilerplate/react-boilerplate-cra-template/commit/4ed9ed555e6d3c5363819af3f5eebf7800ec6046))
34+
- 🔧 improved cleaning script ([a3d05f8](https://github.com/react-boilerplate/react-boilerplate-cra-template/commit/a3d05f8faa49cffbdb3e82fe53a9024db8f2170b)), closes [#29](https://github.com/react-boilerplate/react-boilerplate-cra-template/issues/29)
35+
- 🔧 moved creation of the test CRA to a script to avoid husky bug ([e6f8054](https://github.com/react-boilerplate/react-boilerplate-cra-template/commit/e6f805435b332587875f045f327e97c43b0b49bf))
36+
- 🚨 added media utility tests ([3f2d9c9](https://github.com/react-boilerplate/react-boilerplate-cra-template/commit/3f2d9c991e8af4914dcd899d6a346dceae0a9463))
37+
38+
</details>
39+
40+
### [0.1.3](https://github.com/react-boilerplate/react-boilerplate-cra-template/compare/v0.1.2...v0.1.3) (2020-05-05)
641

742
### Bug Fixes
843

944
- 🐛 moving typescript check to pre-commit from lint-staged ([6aac0d3](https://github.com/react-boilerplate/react-boilerplate-cra-template/commit/6aac0d302bcea714dd8a1ad49b3c77b91204d0b2))
1045

11-
### _Internals (This section should NOT concern the template users)_
46+
### Internals
47+
48+
**This section only concerns the contributors of this project. You can ignore these changes since they DO NOT create changes in the CRA Template**
1249

13-
<details><summary>Click to expand</summary>
50+
<details><summary>Click to see the internal changes</summary>
1451

1552
- ✨ redux dev tools enabled on github page ([aa890c5](https://github.com/react-boilerplate/react-boilerplate-cra-template/commit/aa890c50bcd130788b0b4736efd51b71ae9c057c))
1653
- 👷 added job to test the released version ([a328db6](https://github.com/react-boilerplate/react-boilerplate-cra-template/commit/a328db6f64b9baffbc2bd04f1e84809f3a9e8364))

0 commit comments

Comments
 (0)