automate-release 2.0.8 → 2.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +9 -10
- package/CHANGELOG.md +0 -531
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "automate-release",
|
|
3
3
|
"description": "No more manual work in your software releases.",
|
|
4
4
|
"homepage": "https://nicedoc.io/kikobeats/automate-release",
|
|
5
|
-
"version": "2.0.
|
|
5
|
+
"version": "2.0.11",
|
|
6
6
|
"main": "index.js",
|
|
7
7
|
"bin": {
|
|
8
8
|
"automate-release": "bin/index.js"
|
|
@@ -47,13 +47,13 @@
|
|
|
47
47
|
"@commitlint/cli": "latest",
|
|
48
48
|
"@commitlint/config-conventional": "latest",
|
|
49
49
|
"ava": "latest",
|
|
50
|
+
"c8": "latest",
|
|
50
51
|
"ci-publish": "latest",
|
|
51
52
|
"conventional-github-releaser": "latest",
|
|
52
53
|
"finepack": "latest",
|
|
53
54
|
"git-authors-cli": "latest",
|
|
54
|
-
"
|
|
55
|
+
"nano-staged": "latest",
|
|
55
56
|
"npm-check-updates": "latest",
|
|
56
|
-
"nyc": "latest",
|
|
57
57
|
"prettier-standard": "latest",
|
|
58
58
|
"simple-git-hooks": "latest",
|
|
59
59
|
"standard": "latest",
|
|
@@ -61,7 +61,6 @@
|
|
|
61
61
|
"standard-version": "latest"
|
|
62
62
|
},
|
|
63
63
|
"files": [
|
|
64
|
-
".travis.yml",
|
|
65
64
|
"README.md",
|
|
66
65
|
"bin"
|
|
67
66
|
],
|
|
@@ -74,7 +73,7 @@
|
|
|
74
73
|
"release": "standard-version -a",
|
|
75
74
|
"release:github": "conventional-github-releaser -p angular",
|
|
76
75
|
"release:tags": "git push --follow-tags origin HEAD:master",
|
|
77
|
-
"test": "
|
|
76
|
+
"test": "c8 ava",
|
|
78
77
|
"update": "ncu -u",
|
|
79
78
|
"update:check": "ncu -- --error-level 2"
|
|
80
79
|
},
|
|
@@ -84,19 +83,19 @@
|
|
|
84
83
|
"@commitlint/config-conventional"
|
|
85
84
|
]
|
|
86
85
|
},
|
|
87
|
-
"
|
|
88
|
-
"package.json": [
|
|
89
|
-
"finepack"
|
|
90
|
-
],
|
|
86
|
+
"nano-staged": {
|
|
91
87
|
"*.js,!*.min.js,": [
|
|
92
88
|
"prettier-standard"
|
|
93
89
|
],
|
|
94
90
|
"*.md": [
|
|
95
91
|
"standard-markdown"
|
|
92
|
+
],
|
|
93
|
+
"package.json": [
|
|
94
|
+
"finepack"
|
|
96
95
|
]
|
|
97
96
|
},
|
|
98
97
|
"simple-git-hooks": {
|
|
99
98
|
"commit-msg": "npx commitlint --edit",
|
|
100
|
-
"pre-commit": "npx
|
|
99
|
+
"pre-commit": "npx nano-staged"
|
|
101
100
|
}
|
|
102
101
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,531 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
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.
|
|
4
|
-
|
|
5
|
-
### 2.0.8 (2021-10-13)
|
|
6
|
-
|
|
7
|
-
### 2.0.7 (2021-10-09)
|
|
8
|
-
|
|
9
|
-
### 2.0.6 (2021-07-29)
|
|
10
|
-
|
|
11
|
-
### 2.0.5 (2021-07-14)
|
|
12
|
-
|
|
13
|
-
### 2.0.4 (2021-07-14)
|
|
14
|
-
|
|
15
|
-
### 2.0.3 (2021-07-06)
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
### Bug Fixes
|
|
19
|
-
|
|
20
|
-
* relative path ([40e6fe4](https://github.com/kikobeats/automate-release/commit/40e6fe460d25a783d1718283008b938d696bb72d))
|
|
21
|
-
|
|
22
|
-
### 2.0.2 (2021-07-05)
|
|
23
|
-
|
|
24
|
-
### 2.0.1 (2021-07-04)
|
|
25
|
-
|
|
26
|
-
## [2.0.0](https://github.com/kikobeats/automate-release/compare/v1.0.10...v2.0.0) (2021-07-04)
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
### Features
|
|
30
|
-
|
|
31
|
-
* use GitHub Actions ([190f3a2](https://github.com/kikobeats/automate-release/commit/190f3a2388b1ebefbfb4cf407f82f1b4c7b4b0f6))
|
|
32
|
-
|
|
33
|
-
## 1.1.0 (2021-07-04)
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
### Features
|
|
37
|
-
|
|
38
|
-
* use GitHub Actions ([190f3a2](https://github.com/kikobeats/automate-release/commit/190f3a2388b1ebefbfb4cf407f82f1b4c7b4b0f6))
|
|
39
|
-
|
|
40
|
-
### [1.0.10](https://github.com/kikobeats/automate-release/compare/v1.0.9...v1.0.10) (2021-05-02)
|
|
41
|
-
|
|
42
|
-
### [1.0.9](https://github.com/kikobeats/automate-release/compare/v1.0.8...v1.0.9) (2021-03-23)
|
|
43
|
-
|
|
44
|
-
### [1.0.8](https://github.com/Kikobeats/automate-release/compare/v1.0.7...v1.0.8) (2021-03-18)
|
|
45
|
-
|
|
46
|
-
### [1.0.7](https://github.com/Kikobeats/automate-release/compare/v1.0.6...v1.0.7) (2021-03-18)
|
|
47
|
-
|
|
48
|
-
### [1.0.6](https://github.com/Kikobeats/automate-release/compare/v1.0.5...v1.0.6) (2021-02-08)
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
### Bug Fixes
|
|
52
|
-
|
|
53
|
-
* add ci-publish fallback for local releases ([143de3f](https://github.com/Kikobeats/automate-release/commit/143de3fabd3a6c0f12123be7a82eb892f33c4b78))
|
|
54
|
-
|
|
55
|
-
### [1.0.5](https://github.com/Kikobeats/automate-release/compare/v1.0.4...v1.0.5) (2021-01-20)
|
|
56
|
-
|
|
57
|
-
### [1.0.4](https://github.com/Kikobeats/automate-release/compare/v1.0.3...v1.0.4) (2020-12-25)
|
|
58
|
-
|
|
59
|
-
### [1.0.3](https://github.com/Kikobeats/automate-release/compare/v1.0.2...v1.0.3) (2020-09-30)
|
|
60
|
-
|
|
61
|
-
### [1.0.2](https://github.com/Kikobeats/automate-release/compare/v1.0.1...v1.0.2) (2020-08-11)
|
|
62
|
-
|
|
63
|
-
### [1.0.1](https://github.com/Kikobeats/automate-release/compare/v1.0.0...v1.0.1) (2020-08-11)
|
|
64
|
-
|
|
65
|
-
## [1.0.0](https://github.com/Kikobeats/automate-release/compare/v0.8.54...v1.0.0) (2020-07-03)
|
|
66
|
-
|
|
67
|
-
### [0.8.54](https://github.com/Kikobeats/automate-release/compare/v0.8.53...v0.8.54) (2020-07-02)
|
|
68
|
-
|
|
69
|
-
### [0.8.53](https://github.com/Kikobeats/automate-release/compare/v0.8.52...v0.8.53) (2020-07-02)
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
### Bug Fixes
|
|
73
|
-
|
|
74
|
-
* use a color with better contrast ([607176c](https://github.com/Kikobeats/automate-release/commit/607176c553b24f2f7701d61f45722a8c4716f1cb)), closes [#28](https://github.com/Kikobeats/automate-release/issues/28)
|
|
75
|
-
|
|
76
|
-
### [0.8.52](https://github.com/Kikobeats/automate-release/compare/v0.8.51...v0.8.52) (2020-07-02)
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
### Bug Fixes
|
|
80
|
-
|
|
81
|
-
* use png instead of svg for headline ([f43d76a](https://github.com/Kikobeats/automate-release/commit/f43d76a1abf08b3906d2a32d02d4c0ebc630e07c)), closes [#27](https://github.com/Kikobeats/automate-release/issues/27)
|
|
82
|
-
|
|
83
|
-
### [0.8.51](https://github.com/Kikobeats/automate-release/compare/v0.8.50...v0.8.51) (2020-07-02)
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
### Bug Fixes
|
|
87
|
-
|
|
88
|
-
* include travis file ([121f74c](https://github.com/Kikobeats/automate-release/commit/121f74cf7d9dbfd7989ced226f5bffaab5085f28))
|
|
89
|
-
|
|
90
|
-
### [0.8.50](https://github.com/Kikobeats/automate-release/compare/v0.8.49...v0.8.50) (2020-07-01)
|
|
91
|
-
|
|
92
|
-
### [0.8.49](https://github.com/Kikobeats/automate-release/compare/v0.8.48...v0.8.49) (2020-07-01)
|
|
93
|
-
|
|
94
|
-
### [0.8.48](https://github.com/Kikobeats/automate-release/compare/v0.8.47...v0.8.48) (2020-07-01)
|
|
95
|
-
|
|
96
|
-
### [0.8.47](https://github.com/Kikobeats/automate-release/compare/v0.8.46...v0.8.47) (2020-07-01)
|
|
97
|
-
|
|
98
|
-
### [0.8.46](https://github.com/Kikobeats/automate-release/compare/v0.8.45...v0.8.46) (2020-07-01)
|
|
99
|
-
|
|
100
|
-
### [0.8.45](https://github.com/Kikobeats/automate-release/compare/v0.8.44...v0.8.45) (2020-07-01)
|
|
101
|
-
|
|
102
|
-
### [0.8.44](https://github.com/Kikobeats/automate-release/compare/v0.8.43...v0.8.44) (2020-07-01)
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
### Features
|
|
106
|
-
|
|
107
|
-
* add release-please ([d63c6aa](https://github.com/Kikobeats/automate-release/commit/d63c6aafacf0c0b52aebefd9b9ae24b96a4396a8))
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
### Bug Fixes
|
|
111
|
-
|
|
112
|
-
* identation ([497f2a8](https://github.com/Kikobeats/automate-release/commit/497f2a8a8f0e1d58ecaf5f5cc884db0dc4246bcb))
|
|
113
|
-
|
|
114
|
-
### [0.8.43](https://github.com/Kikobeats/automate-release/compare/v0.8.41...v0.8.43) (2020-07-01)
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
### Bug Fixes
|
|
118
|
-
|
|
119
|
-
* add missing dependency ([16d4e6b](https://github.com/Kikobeats/automate-release/commit/16d4e6b07cd2fe7572a36afa6d1b6a801ab91997))
|
|
120
|
-
|
|
121
|
-
### [0.8.42](https://github.com/Kikobeats/automate-release/compare/v0.8.41...v0.8.42) (2020-06-30)
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
### Bug Fixes
|
|
125
|
-
|
|
126
|
-
* add missing dependency ([16d4e6b](https://github.com/Kikobeats/automate-release/commit/16d4e6b07cd2fe7572a36afa6d1b6a801ab91997))
|
|
127
|
-
|
|
128
|
-
### [0.8.41](https://github.com/Kikobeats/automate-release/compare/v0.8.40...v0.8.41) (2020-06-10)
|
|
129
|
-
|
|
130
|
-
### [0.8.40](https://github.com/Kikobeats/automate-release/compare/v0.8.39...v0.8.40) (2020-04-03)
|
|
131
|
-
|
|
132
|
-
### [0.8.39](https://github.com/Kikobeats/automate-release/compare/v0.8.38...v0.8.39) (2020-03-20)
|
|
133
|
-
|
|
134
|
-
### [0.8.38](https://github.com/Kikobeats/automate-release/compare/v0.8.37...v0.8.38) (2020-03-05)
|
|
135
|
-
|
|
136
|
-
### [0.8.37](https://github.com/Kikobeats/automate-release/compare/v0.8.36...v0.8.37) (2020-02-17)
|
|
137
|
-
|
|
138
|
-
### [0.8.36](https://github.com/Kikobeats/automate-release/compare/v0.8.35...v0.8.36) (2020-01-29)
|
|
139
|
-
|
|
140
|
-
### [0.8.35](https://github.com/Kikobeats/automate-release/compare/v0.8.34...v0.8.35) (2020-01-28)
|
|
141
|
-
|
|
142
|
-
### [0.8.34](https://github.com/Kikobeats/automate-release/compare/v0.8.33...v0.8.34) (2020-01-28)
|
|
143
|
-
|
|
144
|
-
### [0.8.33](https://github.com/Kikobeats/automate-release/compare/v0.8.32...v0.8.33) (2020-01-24)
|
|
145
|
-
|
|
146
|
-
### [0.8.32](https://github.com/Kikobeats/automate-release/compare/v0.8.31...v0.8.32) (2020-01-22)
|
|
147
|
-
|
|
148
|
-
### [0.8.31](https://github.com/Kikobeats/automate-release/compare/v0.8.30...v0.8.31) (2020-01-22)
|
|
149
|
-
|
|
150
|
-
### [0.8.30](https://github.com/Kikobeats/automate-release/compare/v0.8.29...v0.8.30) (2020-01-20)
|
|
151
|
-
|
|
152
|
-
### [0.8.29](https://github.com/Kikobeats/automate-release/compare/v0.8.28...v0.8.29) (2019-10-31)
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
### Bug Fixes
|
|
156
|
-
|
|
157
|
-
* indent ([8e3a872](https://github.com/Kikobeats/automate-release/commit/8e3a8725da104ed4a05f978a7fbbe11822ce8281))
|
|
158
|
-
|
|
159
|
-
### [0.8.28](https://github.com/Kikobeats/automate-release/compare/v0.8.27...v0.8.28) (2019-10-12)
|
|
160
|
-
|
|
161
|
-
### [0.8.27](https://github.com/Kikobeats/automate-release/compare/v0.8.26...v0.8.27) (2019-08-19)
|
|
162
|
-
|
|
163
|
-
### [0.8.26](https://github.com/Kikobeats/automate-release/compare/v0.8.25...v0.8.26) (2019-08-19)
|
|
164
|
-
|
|
165
|
-
### [0.8.25](https://github.com/Kikobeats/automate-release/compare/v0.8.24...v0.8.25) (2019-08-13)
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
### Bug Fixes
|
|
169
|
-
|
|
170
|
-
* linters ([9bf205a](https://github.com/Kikobeats/automate-release/commit/9bf205a))
|
|
171
|
-
|
|
172
|
-
### [0.8.24](https://github.com/Kikobeats/automate-release/compare/v0.8.23...v0.8.24) (2019-08-10)
|
|
173
|
-
|
|
174
|
-
### [0.8.23](https://github.com/Kikobeats/automate-release/compare/v0.8.22...v0.8.23) (2019-07-02)
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
### Bug Fixes
|
|
178
|
-
|
|
179
|
-
* add missing dependnecy ([97527be](https://github.com/Kikobeats/automate-release/commit/97527be))
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
### [0.8.22](https://github.com/Kikobeats/automate-release/compare/v0.8.21...v0.8.22) (2019-06-21)
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
### Build System
|
|
187
|
-
|
|
188
|
-
* adjust preversion ([56a8b71](https://github.com/Kikobeats/automate-release/commit/56a8b71))
|
|
189
|
-
* update ncu flag ([5ec69cb](https://github.com/Kikobeats/automate-release/commit/5ec69cb))
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
### [0.8.21](https://github.com/Kikobeats/automate-release/compare/v0.8.20...v0.8.21) (2019-06-19)
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
### Bug Fixes
|
|
197
|
-
|
|
198
|
-
* typo ([4485e5c](https://github.com/Kikobeats/automate-release/commit/4485e5c))
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
### [0.8.20](https://github.com/Kikobeats/automate-release/compare/v0.8.19...v0.8.20) (2019-06-19)
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
### Build System
|
|
206
|
-
|
|
207
|
-
* setup default git settings ([6dcea6a](https://github.com/Kikobeats/automate-release/commit/6dcea6a))
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
### [0.8.19](https://github.com/Kikobeats/automate-release/compare/v0.8.18...v0.8.19) (2019-05-20)
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
### Build System
|
|
215
|
-
|
|
216
|
-
* remove unnecessary keys ([29e7da5](https://github.com/Kikobeats/automate-release/commit/29e7da5))
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
### [0.8.18](https://github.com/Kikobeats/automate-release/compare/v0.8.17...v0.8.18) (2019-05-20)
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
### [0.8.17](https://github.com/Kikobeats/automate-release/compare/v0.8.16...v0.8.17) (2019-05-20)
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
### Build System
|
|
228
|
-
|
|
229
|
-
* change git-authors-cli position ([0a23528](https://github.com/Kikobeats/automate-release/commit/0a23528))
|
|
230
|
-
* update dependencies ([f7436eb](https://github.com/Kikobeats/automate-release/commit/f7436eb))
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
### [0.8.16](https://github.com/Kikobeats/automate-release/compare/v0.8.15...v0.8.16) (2019-05-20)
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
### Build System
|
|
238
|
-
|
|
239
|
-
* tweaks ([620944a](https://github.com/Kikobeats/automate-release/commit/620944a))
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
## [0.8.15](https://github.com/Kikobeats/automate-release/compare/v0.8.14...v0.8.15) (2019-04-18)
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
<a name="0.8.14"></a>
|
|
248
|
-
## [0.8.14](https://github.com/Kikobeats/automate-release/compare/v0.8.13...v0.8.14) (2019-04-03)
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
### Bug Fixes
|
|
252
|
-
|
|
253
|
-
* rename sh into bash ([1a7ca31](https://github.com/Kikobeats/automate-release/commit/1a7ca31))
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
<a name="0.8.13"></a>
|
|
258
|
-
## [0.8.13](https://github.com/Kikobeats/automate-release/compare/v0.8.10...v0.8.13) (2019-01-25)
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
### Bug Fixes
|
|
262
|
-
|
|
263
|
-
* add continous release section ([797ecd1](https://github.com/Kikobeats/automate-release/commit/797ecd1)), closes [#2](https://github.com/Kikobeats/automate-release/issues/2)
|
|
264
|
-
* add coverage script under test ([134a488](https://github.com/Kikobeats/automate-release/commit/134a488))
|
|
265
|
-
* add github release info ([9933aa8](https://github.com/Kikobeats/automate-release/commit/9933aa8))
|
|
266
|
-
* define test matrix ([41ed5c0](https://github.com/Kikobeats/automate-release/commit/41ed5c0))
|
|
267
|
-
* ensure checkout branch ([b2cc9a2](https://github.com/Kikobeats/automate-release/commit/b2cc9a2)), closes [#issuecomment-403235131](https://github.com/Kikobeats/automate-release/issues/issuecomment-403235131)
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
<a name="0.8.12"></a>
|
|
272
|
-
## [0.8.12](https://github.com/Kikobeats/automate-release/compare/v0.8.10...v0.8.12) (2018-11-27)
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
### Bug Fixes
|
|
276
|
-
|
|
277
|
-
* add continous release section ([797ecd1](https://github.com/Kikobeats/automate-release/commit/797ecd1)), closes [#2](https://github.com/Kikobeats/automate-release/issues/2)
|
|
278
|
-
* add coverage script under test ([134a488](https://github.com/Kikobeats/automate-release/commit/134a488))
|
|
279
|
-
* add github release info ([9933aa8](https://github.com/Kikobeats/automate-release/commit/9933aa8))
|
|
280
|
-
* define test matrix ([41ed5c0](https://github.com/Kikobeats/automate-release/commit/41ed5c0))
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
<a name="0.8.11"></a>
|
|
285
|
-
## [0.8.11](https://github.com/Kikobeats/automate-release/compare/v0.8.10...v0.8.11) (2018-10-29)
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
### Bug Fixes
|
|
289
|
-
|
|
290
|
-
* add continous release section ([797ecd1](https://github.com/Kikobeats/automate-release/commit/797ecd1)), closes [#2](https://github.com/Kikobeats/automate-release/issues/2)
|
|
291
|
-
* add coverage script under test ([134a488](https://github.com/Kikobeats/automate-release/commit/134a488))
|
|
292
|
-
* define test matrix ([41ed5c0](https://github.com/Kikobeats/automate-release/commit/41ed5c0))
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
<a name="0.8.10"></a>
|
|
297
|
-
## [0.8.10](https://github.com/Kikobeats/automate-release/compare/v0.8.7...v0.8.10) (2018-10-27)
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
### Bug Fixes
|
|
301
|
-
|
|
302
|
-
* improve script ([17f4cba](https://github.com/Kikobeats/automate-release/commit/17f4cba))
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
<a name="0.8.9"></a>
|
|
307
|
-
## [0.8.9](https://github.com/Kikobeats/automate-release/compare/v0.8.7...v0.8.9) (2018-10-26)
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
<a name="0.8.8"></a>
|
|
312
|
-
## [0.8.8](https://github.com/Kikobeats/automate-release/compare/v0.8.7...v0.8.8) (2018-10-26)
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
<a name="0.8.8"></a>
|
|
317
|
-
## [0.8.8](https://github.com/Kikobeats/automate-release/compare/v0.8.7...v0.8.8) (2018-10-26)
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
<a name="0.8.7"></a>
|
|
322
|
-
## [0.8.7](https://github.com/Kikobeats/automate-release/compare/v0.8.6...v0.8.7) (2018-10-26)
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
<a name="0.8.6"></a>
|
|
327
|
-
## [0.8.6](https://github.com/Kikobeats/automate-release/compare/v0.8.5...v0.8.6) (2018-10-25)
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
<a name="0.8.5"></a>
|
|
332
|
-
## [0.8.5](https://github.com/Kikobeats/automate-release/compare/v0.8.4...v0.8.5) (2018-10-25)
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
<a name="0.8.3"></a>
|
|
337
|
-
## [0.8.3](https://github.com/Kikobeats/automate-release/compare/v0.8.2...v0.8.3) (2018-10-25)
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
### Bug Fixes
|
|
341
|
-
|
|
342
|
-
* remove debug info ([259aba0](https://github.com/Kikobeats/automate-release/commit/259aba0))
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
<a name="0.8.1"></a>
|
|
347
|
-
## [0.8.1](https://github.com/Kikobeats/automate-release/compare/v0.7.5...v0.8.1) (2018-10-25)
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
<a name="0.7.4"></a>
|
|
352
|
-
## [0.7.4](https://github.com/Kikobeats/automatic-release/compare/v0.7.3...v0.7.4) (2018-10-14)
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
### Bug Fixes
|
|
356
|
-
|
|
357
|
-
* copy dot path properly ([cb29603](https://github.com/Kikobeats/automatic-release/commit/cb29603))
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
<a name="0.7.3"></a>
|
|
362
|
-
## [0.7.3](https://github.com/Kikobeats/automatic-release/compare/v0.7.2...v0.7.3) (2018-10-13)
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
### Bug Fixes
|
|
366
|
-
|
|
367
|
-
* show readme under help ([01498bc](https://github.com/Kikobeats/automatic-release/commit/01498bc))
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
<a name="0.7.2"></a>
|
|
372
|
-
## [0.7.2](https://github.com/Kikobeats/automatic-release/compare/v0.7.1...v0.7.2) (2018-10-13)
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
### Bug Fixes
|
|
376
|
-
|
|
377
|
-
* add posinstallation guidelines ([77b68dd](https://github.com/Kikobeats/automatic-release/commit/77b68dd))
|
|
378
|
-
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
<a name="0.7.1"></a>
|
|
382
|
-
## [0.7.1](https://github.com/Kikobeats/automatic-release/compare/v0.7.0...v0.7.1) (2018-10-13)
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
### Bug Fixes
|
|
386
|
-
|
|
387
|
-
* add description ([46834d3](https://github.com/Kikobeats/automatic-release/commit/46834d3))
|
|
388
|
-
* setup shell ([ac66fab](https://github.com/Kikobeats/automatic-release/commit/ac66fab))
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
<a name="0.7.0"></a>
|
|
393
|
-
# [0.7.0](https://github.com/Kikobeats/automatic-release/compare/v0.6.1...v0.7.0) (2018-10-13)
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
### Features
|
|
397
|
-
|
|
398
|
-
* add cli ([63ad6e2](https://github.com/Kikobeats/automatic-release/commit/63ad6e2))
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
<a name="0.6.1"></a>
|
|
403
|
-
## [0.6.1](https://github.com/Kikobeats/automatic-release/compare/v0.6.0...v0.6.1) (2018-10-12)
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
<a name="0.6.0"></a>
|
|
408
|
-
# [0.6.0](https://github.com/Kikobeats/automatic-release/compare/v0.5.5...v0.6.0) (2018-10-12)
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
### Features
|
|
412
|
-
|
|
413
|
-
* better explanation about changelog content ([1f0a487](https://github.com/Kikobeats/automatic-release/commit/1f0a487)), closes [#3](https://github.com/Kikobeats/automatic-release/issues/3)
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
<a name="0.5.5"></a>
|
|
418
|
-
## [0.5.5](https://github.com/Kikobeats/automatic-release/compare/v0.5.4...v0.5.5) (2018-10-12)
|
|
419
|
-
|
|
420
|
-
A new version come out 🎉
|
|
421
|
-
|
|
422
|
-
This new version has mainly related with improve the scripts we use.
|
|
423
|
-
|
|
424
|
-
### Bug Fixes
|
|
425
|
-
|
|
426
|
-
* setup project name ([1b7e7af](https://github.com/Kikobeats/automatic-release/commit/1b7e7af))
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
<a name="0.5.4"></a>
|
|
431
|
-
## [0.5.4](https://github.com/Kikobeats/automatic-release/compare/v0.5.3...v0.5.4) (2018-10-11)
|
|
432
|
-
|
|
433
|
-
A better version come out 💥
|
|
434
|
-
|
|
435
|
-
We fixed the gramar of project, describing better the concepts.
|
|
436
|
-
|
|
437
|
-
### Bug Fixes
|
|
438
|
-
|
|
439
|
-
* grammar ([da526be](https://github.com/Kikobeats/automatic-release/commit/da526be))
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
<a name="0.5.3"></a>
|
|
444
|
-
## [0.5.3](https://github.com/Kikobeats/automatic-release/compare/v0.5.2...v0.5.3) (2018-10-10)
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
<a name="0.5.2"></a>
|
|
449
|
-
## [0.5.2](https://github.com/Kikobeats/automatic-release/compare/v0.5.1...v0.5.2) (2018-10-10)
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
### Bug Fixes
|
|
453
|
-
|
|
454
|
-
* define author ([3e4c322](https://github.com/Kikobeats/automatic-release/commit/3e4c322))
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
<a name="0.5.1"></a>
|
|
459
|
-
## [0.5.1](https://github.com/Kikobeats/automatic-release/compare/v0.5.0...v0.5.1) (2018-10-10)
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
### Bug Fixes
|
|
463
|
-
|
|
464
|
-
* commit authors before release ([78fc4bb](https://github.com/Kikobeats/automatic-release/commit/78fc4bb))
|
|
465
|
-
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
<a name="0.5.0"></a>
|
|
469
|
-
# [0.5.0](https://github.com/Kikobeats/automatic-release/compare/v0.4.2...v0.5.0) (2018-10-10)
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
### Features
|
|
473
|
-
|
|
474
|
-
* add git-authors ([c786e3e](https://github.com/Kikobeats/automatic-release/commit/c786e3e))
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
<a name="0.4.2"></a>
|
|
479
|
-
## [0.4.2](https://github.com/Kikobeats/automatic-release/compare/v0.4.1...v0.4.2) (2018-10-10)
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
|
|
483
|
-
<a name="0.4.1"></a>
|
|
484
|
-
## [0.4.1](https://github.com/Kikobeats/automatic-release/compare/v0.4.0...v0.4.1) (2018-10-10)
|
|
485
|
-
|
|
486
|
-
|
|
487
|
-
|
|
488
|
-
<a name="0.4.0"></a>
|
|
489
|
-
# [0.4.0](https://github.com/Kikobeats/automatic-release/compare/v0.3.0...v0.4.0) (2018-10-10)
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
### Features
|
|
493
|
-
|
|
494
|
-
* add communication section ([649b822](https://github.com/Kikobeats/automatic-release/commit/649b822))
|
|
495
|
-
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
<a name="0.3.0"></a>
|
|
499
|
-
# [0.3.0](https://github.com/Kikobeats/automatic-release/compare/v0.2.1...v0.3.0) (2018-10-10)
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
### Features
|
|
503
|
-
|
|
504
|
-
* add github release ([9c7a69e](https://github.com/Kikobeats/automatic-release/commit/9c7a69e))
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
<a name="0.2.1"></a>
|
|
509
|
-
## [0.2.1](https://github.com/Kikobeats/automatic-release/compare/v0.2.0...v0.2.1) (2018-10-10)
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
<a name="0.2.0"></a>
|
|
514
|
-
# [0.2.0](https://github.com/Kikobeats/automatic-release/compare/v0.1.0...v0.2.0) (2018-10-10)
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
### Features
|
|
518
|
-
|
|
519
|
-
* add postrelease script ([01de80f](https://github.com/Kikobeats/automatic-release/commit/01de80f))
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
<a name="0.1.0"></a>
|
|
524
|
-
# 0.1.0 (2018-10-10)
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
### Features
|
|
528
|
-
|
|
529
|
-
* add standard-version ([3ecccd1](https://github.com/Kikobeats/automatic-release/commit/3ecccd1))
|
|
530
|
-
* first commit ([02ee2ce](https://github.com/Kikobeats/automatic-release/commit/02ee2ce))
|
|
531
|
-
* write next version section ([b2f3456](https://github.com/Kikobeats/automatic-release/commit/b2f3456))
|