Skip to content

Commit 05823d7

Browse files
committed
Add CHANGELOG
1 parent 20dbc33 commit 05823d7

File tree

3 files changed

+508
-18
lines changed

3 files changed

+508
-18
lines changed

CHANGELOG.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
# Changelog
2+
3+
## v0.5.0 (2018-06-11)
4+
5+
#### :boom: Breaking Change
6+
* [#2](https://github.com/cli-table/cli-table3/pull/2) Update Node version requirements. ([@Turbo87](https://github.com/Turbo87))
7+
8+
#### :memo: Documentation
9+
* [#11](https://github.com/cli-table/cli-table3/pull/11) Update Documentation. ([@Turbo87](https://github.com/Turbo87))
10+
11+
#### :house: Internal
12+
* [#16](https://github.com/cli-table/cli-table3/pull/16) Replace `kind-of` dependency with `typeof` and `Array.isArray()`. ([@Turbo87](https://github.com/Turbo87))
13+
* [#15](https://github.com/cli-table/cli-table3/pull/15) Remove Gulp. ([@Turbo87](https://github.com/Turbo87))
14+
* [#13](https://github.com/cli-table/cli-table3/pull/13) Use ES6 class syntax and `let/const`. ([@Turbo87](https://github.com/Turbo87))
15+
* [#12](https://github.com/cli-table/cli-table3/pull/12) Add ESLint and Prettier. ([@Turbo87](https://github.com/Turbo87))
16+
* [#10](https://github.com/cli-table/cli-table3/pull/10) chore: use yarn cache. ([@DanielRuf](https://github.com/DanielRuf))
17+
* [#9](https://github.com/cli-table/cli-table3/pull/9) Use Jest for testing. ([@Turbo87](https://github.com/Turbo87))
18+
* [#3](https://github.com/cli-table/cli-table3/pull/3) Add `yarn.lock` file. ([@Turbo87](https://github.com/Turbo87))
19+
* [#1](https://github.com/cli-table/cli-table3/pull/1) Skip broken test. ([@Turbo87](https://github.com/Turbo87))
20+
21+
#### Committers: 3
22+
- Daniel Ruf ([DanielRuf](https://github.com/DanielRuf))
23+
- Tobias Bieniek ([Turbo87](https://github.com/Turbo87))
24+
- [dependabot[bot]](https://github.com/apps/dependabot)
25+
26+
27+
## v0.4.0 (2018-06-10)
28+
29+
First official release as `cli-table3`. Changes compares to `cli-table2` v0.2.0:
30+
31+
#### :rocket: Enhancement
32+
* [#27](https://github.com/jamestalmage/cli-table2/pull/27) Remove "lodash" dependency. ([@Turbo87](https://github.com/Turbo87))
33+
34+
#### :bug: Bug Fix
35+
* [#29](https://github.com/jamestalmage/cli-table2/pull/29) Fix wordWrap with colSpan. ([@mmurphy](https://github.com/mmurphy))
36+
* [#24](https://github.com/jamestalmage/cli-table2/pull/24) Fixing the runtime error when content is truncated. ([@sthadeshwar](https://github.com/sthadeshwar))
37+
38+
#### :memo: Documentation
39+
* [#41](https://github.com/jamestalmage/cli-table2/pull/41) Create LICENSE. ([@GantMan](https://github.com/GantMan))
40+
41+
#### :house: Internal
42+
* [#26](https://github.com/jamestalmage/cli-table2/pull/26) package.json: Whitelist JS files ([@Turbo87](https://github.com/Turbo87))
43+
44+
#### Committers: 4
45+
- Gant Laborde ([GantMan](https://github.com/GantMan))
46+
- Martin Murphy ([mmurphy](https://github.com/mmurphy))
47+
- Satyajit Thadeshwar ([sthadeshwar](https://github.com/sthadeshwar))
48+
- Tobias Bieniek ([Turbo87](https://github.com/Turbo87))

package.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,14 @@
2121
"eslint-plugin-prettier": "^2.6.0",
2222
"jest": "^23.1.0",
2323
"jest-runner-eslint": "^0.6.0",
24+
"lerna-changelog": "^0.7.0",
2425
"prettier": "1.13.5"
2526
},
2627
"optionalDependencies": {
2728
"colors": "^1.1.2"
2829
},
2930
"scripts": {
31+
"changelog": "lerna-changelog",
3032
"docs": "node ./scripts/update-docs.js",
3133
"prettier": "prettier --write '{examples,lib,scripts,src,test}/**/*.js'",
3234
"test": "jest --color",
@@ -57,6 +59,16 @@
5759
"engines": {
5860
"node": ">=6"
5961
},
62+
"changelog": {
63+
"repo": "cli-table/cli-table3",
64+
"labels": {
65+
"breaking": ":boom: Breaking Change",
66+
"enhancement": ":rocket: Enhancement",
67+
"bug": ":bug: Bug Fix",
68+
"documentation": ":memo: Documentation",
69+
"internal": ":house: Internal"
70+
}
71+
},
6072
"jest": {
6173
"projects": [
6274
{

0 commit comments

Comments
 (0)