conventional-changelog-angular 5.0.12 → 6.0.0

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/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][daviddm-image]][daviddm-url] [![Coverage Status][coveralls-image]][coveralls-url]
1
+ # [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][daviddm-image]][daviddm-url] [![Coverage Status][coverage-image]][coverage-url]
2
2
 
3
3
  > [conventional-changelog](https://github.com/ajoslin/conventional-changelog) [angular](https://github.com/angular/angular) preset
4
4
 
@@ -99,6 +99,6 @@ A detailed explanation can be found in this [document](#commit-message-format).
99
99
  [travis-url]: https://travis-ci.org/conventional-changelog/conventional-changelog-angular
100
100
  [daviddm-image]: https://david-dm.org/conventional-changelog/conventional-changelog-angular.svg?theme=shields.io
101
101
  [daviddm-url]: https://david-dm.org/conventional-changelog/conventional-changelog-angular
102
- [coveralls-image]: https://coveralls.io/repos/conventional-changelog/conventional-changelog-angular/badge.svg
103
- [coveralls-url]: https://coveralls.io/r/conventional-changelog/conventional-changelog-angular
102
+ [coverage-image]: https://coveralls.io/repos/github/conventional-changelog/conventional-changelog/badge.svg?branch=master
103
+ [coverage-url]: https://coveralls.io/github/conventional-changelog/conventional-changelog?branch=master
104
104
  [commit-message-format]: https://docs.google.com/document/d/1QrDFcIiPjSLDn3EL15IJygNPiHORgU1_OOAqWjiDU5Y/edit#
@@ -1,10 +1,10 @@
1
1
  'use strict'
2
2
 
3
- const Q = require('q')
4
3
  const parserOpts = require('./parser-opts')
5
4
  const writerOpts = require('./writer-opts')
6
5
 
7
- module.exports = Q.all([parserOpts, writerOpts])
8
- .spread((parserOpts, writerOpts) => {
9
- return { parserOpts, writerOpts }
10
- })
6
+ module.exports = Promise.all([parserOpts, writerOpts])
7
+ .then(([parserOpts, writerOpts]) => ({
8
+ parserOpts,
9
+ writerOpts
10
+ }))
package/index.js CHANGED
@@ -1,11 +1,13 @@
1
1
  'use strict'
2
- const Q = require('q')
3
2
  const conventionalChangelog = require('./conventional-changelog')
4
3
  const parserOpts = require('./parser-opts')
5
4
  const recommendedBumpOpts = require('./conventional-recommended-bump')
6
5
  const writerOpts = require('./writer-opts')
7
6
 
8
- module.exports = Q.all([conventionalChangelog, parserOpts, recommendedBumpOpts, writerOpts])
9
- .spread((conventionalChangelog, parserOpts, recommendedBumpOpts, writerOpts) => {
10
- return { conventionalChangelog, parserOpts, recommendedBumpOpts, writerOpts }
11
- })
7
+ module.exports = Promise.all([conventionalChangelog, parserOpts, recommendedBumpOpts, writerOpts])
8
+ .then(([conventionalChangelog, parserOpts, recommendedBumpOpts, writerOpts]) => ({
9
+ conventionalChangelog,
10
+ parserOpts,
11
+ recommendedBumpOpts,
12
+ writerOpts
13
+ }))
package/package.json CHANGED
@@ -1,11 +1,8 @@
1
1
  {
2
2
  "name": "conventional-changelog-angular",
3
- "version": "5.0.12",
3
+ "version": "6.0.0",
4
4
  "description": "conventional-changelog angular preset",
5
5
  "main": "index.js",
6
- "scripts": {
7
- "test-windows": "mocha --timeout 30000"
8
- },
9
6
  "repository": {
10
7
  "type": "git",
11
8
  "url": "https://github.com/conventional-changelog/conventional-changelog.git"
@@ -25,7 +22,7 @@
25
22
  ],
26
23
  "author": "Steve Mao",
27
24
  "engines": {
28
- "node": ">=10"
25
+ "node": ">=14"
29
26
  },
30
27
  "license": "ISC",
31
28
  "bugs": {
@@ -33,8 +30,9 @@
33
30
  },
34
31
  "homepage": "https://github.com/conventional-changelog/conventional-changelog/tree/master/packages/conventional-changelog-angular#readme",
35
32
  "dependencies": {
36
- "compare-func": "^2.0.0",
37
- "q": "^1.5.1"
33
+ "compare-func": "^2.0.0"
38
34
  },
39
- "gitHead": "cc567b98facf71315f4b1620d81ce01d155efaca"
40
- }
35
+ "scripts": {
36
+ "test-windows": "mocha --timeout 30000"
37
+ }
38
+ }
package/writer-opts.js CHANGED
@@ -1,17 +1,16 @@
1
1
  'use strict'
2
2
 
3
3
  const compareFunc = require('compare-func')
4
- const Q = require('q')
5
- const readFile = Q.denodeify(require('fs').readFile)
6
- const resolve = require('path').resolve
4
+ const { readFile } = require('fs').promises
5
+ const { resolve } = require('path')
7
6
 
8
- module.exports = Q.all([
7
+ module.exports = Promise.all([
9
8
  readFile(resolve(__dirname, './templates/template.hbs'), 'utf-8'),
10
9
  readFile(resolve(__dirname, './templates/header.hbs'), 'utf-8'),
11
10
  readFile(resolve(__dirname, './templates/commit.hbs'), 'utf-8'),
12
11
  readFile(resolve(__dirname, './templates/footer.hbs'), 'utf-8')
13
12
  ])
14
- .spread((template, header, commit, footer) => {
13
+ .then(([template, header, commit, footer]) => {
15
14
  const writerOpts = getWriterOpts()
16
15
 
17
16
  writerOpts.mainTemplate = template
package/CHANGELOG.md DELETED
@@ -1,401 +0,0 @@
1
- # Change Log
2
-
3
- All notable changes to this project will be documented in this file.
4
- See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
-
6
- ## [5.0.12](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-angular@5.0.11...conventional-changelog-angular@5.0.12) (2020-11-05)
7
-
8
- **Note:** Version bump only for package conventional-changelog-angular
9
-
10
-
11
-
12
-
13
-
14
- ## [5.0.11](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-angular@5.0.10...conventional-changelog-angular@5.0.11) (2020-06-20)
15
-
16
-
17
- ### Bug Fixes
18
-
19
- * **deps:** update dependency compare-func to v2 ([#647](https://github.com/conventional-changelog/conventional-changelog/issues/647)) ([de4f630](https://github.com/conventional-changelog/conventional-changelog/commit/de4f6309403ca0d46b7c6235052f4dca61ea15bc))
20
-
21
-
22
-
23
-
24
-
25
- ## [5.0.10](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-angular@5.0.6...conventional-changelog-angular@5.0.10) (2020-05-08)
26
-
27
- **Note:** Version bump only for package conventional-changelog-angular
28
-
29
-
30
-
31
-
32
-
33
- ## [5.0.6](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-angular@5.0.5...conventional-changelog-angular@5.0.6) (2019-11-07)
34
-
35
-
36
- ### Bug Fixes
37
-
38
- * revertPattern match default git revert format ([#545](https://github.com/conventional-changelog/conventional-changelog/issues/545)) ([fe449f8](https://github.com/conventional-changelog/conventional-changelog/commit/fe449f899567574a36d1819b313e2caa899052ff))
39
-
40
-
41
-
42
-
43
-
44
- ## [5.0.4](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-angular@5.0.3...conventional-changelog-angular@5.0.4) (2019-10-02)
45
-
46
-
47
- ### Bug Fixes
48
-
49
- * use full commit hash in commit link ([7a60dec](https://github.com/conventional-changelog/conventional-changelog/commit/7a60dec)), closes [#476](https://github.com/conventional-changelog/conventional-changelog/issues/476)
50
-
51
-
52
-
53
-
54
-
55
- ## [5.0.3](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-angular@5.0.2...conventional-changelog-angular@5.0.3) (2019-02-14)
56
-
57
-
58
- ### Bug Fixes
59
-
60
- * **preset:angular:** scoped npm packages should not be seen as GitHub username ([#394](https://github.com/conventional-changelog/conventional-changelog/issues/394)) ([e332ef0](https://github.com/conventional-changelog/conventional-changelog/commit/e332ef0))
61
-
62
-
63
-
64
-
65
-
66
- ## [5.0.2](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-angular@5.0.1...conventional-changelog-angular@5.0.2) (2018-11-01)
67
-
68
-
69
- ### Bug Fixes
70
-
71
- * Upgrade to Lerna 3, fix Node.js v11 error ([#385](https://github.com/conventional-changelog/conventional-changelog/issues/385)) ([cdef282](https://github.com/conventional-changelog/conventional-changelog/commit/cdef282))
72
-
73
-
74
-
75
-
76
-
77
- <a name="5.0.1"></a>
78
- ## [5.0.1](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-angular@5.0.0...conventional-changelog-angular@5.0.1) (2018-08-21)
79
-
80
-
81
-
82
-
83
- **Note:** Version bump only for package conventional-changelog-angular
84
-
85
- <a name="5.0.0"></a>
86
- # [5.0.0](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-angular@4.0.1...conventional-changelog-angular@5.0.0) (2018-06-06)
87
-
88
-
89
- ### Features
90
-
91
- * re-use parser options within each preset ([#335](https://github.com/conventional-changelog/conventional-changelog/issues/335)) ([d3eaacf](https://github.com/conventional-changelog/conventional-changelog/commit/d3eaacf)), closes [#241](https://github.com/conventional-changelog/conventional-changelog/issues/241)
92
-
93
-
94
- ### BREAKING CHANGES
95
-
96
- * Re-use parser options object between components of a preset. For some
97
- presets this may change the behavior of `conventional-recommended-bump`
98
- as the parser options object for the `conventional-recommended-bump` options
99
- within a preset were different than the parser options object for the
100
- `conventional-changelog` options within a preset.
101
-
102
- If you are not using `conventional-recommended-bump`, then this is
103
- **not** a breaking change for you.
104
-
105
-
106
-
107
-
108
- <a name="4.0.1"></a>
109
- ## [4.0.1](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-angular@4.0.0...conventional-changelog-angular@4.0.1) (2018-06-02)
110
-
111
-
112
- ### Bug Fixes
113
-
114
- * Fix plurality of "are" vs. "is" ([#331](https://github.com/conventional-changelog/conventional-changelog/issues/331)) ([027e778](https://github.com/conventional-changelog/conventional-changelog/commit/027e778))
115
-
116
-
117
-
118
-
119
- <a name="4.0.0"></a>
120
- # [4.0.0](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-angular@3.0.7...conventional-changelog-angular@4.0.0) (2018-05-29)
121
-
122
-
123
- ### Chores
124
-
125
- * **package:** set Node requirement to oldest supported LTS ([#329](https://github.com/conventional-changelog/conventional-changelog/issues/329)) ([cae2fe0](https://github.com/conventional-changelog/conventional-changelog/commit/cae2fe0))
126
-
127
-
128
- ### Code Refactoring
129
-
130
- * remove anchor from header templates ([#301](https://github.com/conventional-changelog/conventional-changelog/issues/301)) ([346f24f](https://github.com/conventional-changelog/conventional-changelog/commit/346f24f)), closes [#186](https://github.com/conventional-changelog/conventional-changelog/issues/186)
131
-
132
-
133
- ### BREAKING CHANGES
134
-
135
- * **package:** Set the package's minimum required Node version to be the oldest LTS
136
- currently supported by the Node Release working group. At this time,
137
- that is Node 6 (which is in its Maintenance LTS phase).
138
- * Anchor tags are removed from the changelog header templates. The
139
- rendered Markdown will no longer contain anchor tags proceeding the
140
- version number header that constitutes the changelog header. This means
141
- that consumers of rendered markdown will not be able to use a URL that
142
- has been constructed to contain a version number anchor tag reference,
143
- since the anchor tag won't exist in the rendered markdown.
144
-
145
- It's stronly recomended consumers use the full URL path to the release
146
- page for a given version, as that URL is a permalink to that verison,
147
- contains all relavent release information, and does not, otherwise, rely
148
- on the anchor tag being excessible from the current page view.
149
-
150
- As an example, for version `2.0.0` of a GitHub project, the following
151
- URL should be used:
152
- - https://github.com/conventional-changelog/releaser-tools/releases/tag/v2.0.0
153
-
154
-
155
-
156
-
157
- <a name="3.0.7"></a>
158
- ## [3.0.7](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-angular@3.0.6...conventional-changelog-angular@3.0.7) (2018-04-16)
159
-
160
-
161
-
162
-
163
- **Note:** Version bump only for package conventional-changelog-angular
164
-
165
- <a name="3.0.6"></a>
166
- ## [3.0.6](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-angular@3.0.5...conventional-changelog-angular@3.0.6) (2018-03-28)
167
-
168
-
169
- ### Bug Fixes
170
-
171
- * revert previous change ([2f4530f](https://github.com/conventional-changelog/conventional-changelog/commit/2f4530f))
172
-
173
-
174
-
175
-
176
- <a name="3.0.5"></a>
177
- ## [3.0.5](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-angular@3.0.4...conventional-changelog-angular@3.0.5) (2018-03-27)
178
-
179
-
180
-
181
-
182
- **Note:** Version bump only for package conventional-changelog-angular
183
-
184
- <a name="3.0.4"></a>
185
- ## [3.0.4](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-angular@3.0.3...conventional-changelog-angular@3.0.4) (2018-03-27)
186
-
187
-
188
-
189
-
190
- **Note:** Version bump only for package conventional-changelog-angular
191
-
192
- <a name="3.0.3"></a>
193
- ## [3.0.3](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-angular@3.0.2...conventional-changelog-angular@3.0.3) (2018-03-27)
194
-
195
-
196
-
197
-
198
- **Note:** Version bump only for package conventional-changelog-angular
199
-
200
- <a name="3.0.2"></a>
201
- ## [3.0.2](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-angular@3.0.1...conventional-changelog-angular@3.0.2) (2018-03-22)
202
-
203
-
204
-
205
-
206
- **Note:** Version bump only for package conventional-changelog-angular
207
-
208
- <a name="3.0.1"></a>
209
- ## [3.0.1](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-angular@3.0.0...conventional-changelog-angular@3.0.1) (2018-03-22)
210
-
211
-
212
-
213
-
214
- **Note:** Version bump only for package conventional-changelog-angular
215
-
216
- <a name="3.0.0"></a>
217
- ## [3.0.0](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-angular@1.6.6...conventional-changelog-angular@3.0.0) (2018-03-22)
218
-
219
- ### Features
220
-
221
- * **angular:** use latest [Angular Commit Conventions](https://github.com/angular/angular/blob/master/CONTRIBUTING.md#type) ([03f0210e42dff58689ddf182694a8a6ca26e526b](https://github.com/conventional-changelog/conventional-changelog/commit/03f0210e42dff58689ddf182694a8a6ca26e526b))
222
-
223
- ### BREAKING CHANGES
224
-
225
- The Angular conventions specifically say that breaking changes must start with "BREAKING CHANGE", not the plural form. Therefore the previous plural form "CHANGES" has been corrected to singular "CHANGE".
226
-
227
- Former "chore" type has been replaced by a type "build" for commits on the build system and "ci" for commits regarding CI
228
-
229
- <a name="1.6.6"></a>
230
- ## [1.6.6](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-angular@1.6.5...conventional-changelog-angular@1.6.6) (2018-02-24)
231
-
232
-
233
-
234
-
235
- **Note:** Version bump only for package conventional-changelog-angular
236
-
237
- <a name="1.6.5"></a>
238
- ## [1.6.5](https://github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-angular@1.6.4...conventional-changelog-angular@1.6.5) (2018-02-20)
239
-
240
-
241
-
242
-
243
- **Note:** Version bump only for package conventional-changelog-angular
244
-
245
- <a name="1.6.4"></a>
246
- ## [1.6.4](https://github.com/conventional-changelog/conventional-changelog-angular/compare/conventional-changelog-angular@1.6.3...conventional-changelog-angular@1.6.4) (2018-02-13)
247
-
248
-
249
-
250
-
251
- **Note:** Version bump only for package conventional-changelog-angular
252
-
253
- <a name="1.6.3"></a>
254
- ## [1.6.3](https://github.com/conventional-changelog/conventional-changelog-angular/compare/conventional-changelog-angular@1.6.2...conventional-changelog-angular@1.6.3) (2018-02-13)
255
-
256
-
257
-
258
-
259
- **Note:** Version bump only for package conventional-changelog-angular
260
-
261
- <a name="1.6.2"></a>
262
- ## [1.6.2](https://github.com/conventional-changelog/conventional-changelog-angular/compare/conventional-changelog-angular@1.6.1...conventional-changelog-angular@1.6.2) (2018-02-05)
263
-
264
-
265
-
266
-
267
- **Note:** Version bump only for package conventional-changelog-angular
268
-
269
- <a name="1.6.1"></a>
270
- ## [1.6.1](https://github.com/conventional-changelog/conventional-changelog-angular/compare/conventional-changelog-angular@1.6.0...conventional-changelog-angular@1.6.1) (2018-01-29)
271
-
272
-
273
-
274
-
275
- **Note:** Version bump only for package conventional-changelog-angular
276
-
277
- <a name="1.6.0"></a>
278
- # [1.6.0](https://github.com/conventional-changelog/conventional-changelog-angular/compare/conventional-changelog-angular@1.5.3...conventional-changelog-angular@1.6.0) (2017-12-18)
279
-
280
-
281
- ### Features
282
-
283
- * **preset:** add recommended-bump opts into presets ([60815b5](https://github.com/conventional-changelog/conventional-changelog-angular/commit/60815b5)), closes [#241](https://github.com/conventional-changelog/conventional-changelog-angular/issues/241)
284
-
285
-
286
-
287
-
288
- <a name="1.5.3"></a>
289
- ## [1.5.3](https://github.com/conventional-changelog/conventional-changelog-angular/compare/conventional-changelog-angular@1.5.2...conventional-changelog-angular@1.5.3) (2017-12-08)
290
-
291
-
292
-
293
-
294
- **Note:** Version bump only for package conventional-changelog-angular
295
-
296
- <a name="1.5.2"></a>
297
- ## [1.5.2](https://github.com/conventional-changelog/conventional-changelog-angular/compare/conventional-changelog-angular@1.5.1...conventional-changelog-angular@1.5.2) (2017-11-13)
298
-
299
-
300
-
301
-
302
- **Note:** Version bump only for package conventional-changelog-angular
303
-
304
- <a name="1.5.1"></a>
305
- ## [1.5.1](https://github.com/conventional-changelog/conventional-changelog-angular/compare/conventional-changelog-angular@1.5.0...conventional-changelog-angular@1.5.1) (2017-10-01)
306
-
307
- <a name="1.5.0"></a>
308
- # [1.5.0](https://github.com/conventional-changelog/conventional-changelog-angular/compare/conventional-changelog-angular@1.4.0...conventional-changelog-angular@1.5.0) (2017-09-01)
309
-
310
-
311
- ### Bug Fixes
312
-
313
- * **angular:** smarter username detection ([#219](https://github.com/conventional-changelog/conventional-changelog/issues/219)) ([f1b4847](https://github.com/conventional-changelog/conventional-changelog-angular/commit/f1b4847)), closes [#218](https://github.com/conventional-changelog/conventional-changelog-angular/issues/218)
314
-
315
-
316
- ### Features
317
-
318
- * **angular:** use the context for getting the repository and host urls ([#217](https://github.com/conventional-changelog/conventional-changelog/issues/217)) ([c146f2a](https://github.com/conventional-changelog/conventional-changelog-angular/commit/c146f2a))
319
-
320
- <a name="1.4.0"></a>
321
- # [1.4.0](https://github.com/conventional-changelog/conventional-changelog-angular/compare/conventional-changelog-angular@1.3.3...conventional-changelog-angular@1.4.0) (2017-07-17)
322
-
323
-
324
- ### Features
325
-
326
- * **angular:** find package.json from cwd upwards ([#206](https://github.com/conventional-changelog/conventional-changelog/issues/206)) ([867c142](https://github.com/conventional-changelog/conventional-changelog-angular/commit/867c142))
327
-
328
- <a name="1.3.3"></a>
329
- ## [1.3.3](https://github.com/conventional-changelog/conventional-changelog-angular/compare/conventional-changelog-angular@1.3.2...conventional-changelog-angular@1.3.3) (2017-03-11)
330
-
331
- <a name="1.3.0"></a>
332
- # [1.3.0](https://github.com/conventional-changelog/conventional-changelog-angular/compare/v1.2.0...v1.3.0) (2016-08-06)
333
-
334
-
335
- ### Features
336
-
337
- * **noteKeywords:** make BREAKING CHANGE more forgiving ([7dce559](https://github.com/conventional-changelog/conventional-changelog-angular/commit/7dce559))
338
- * **references:** remove references that already appear in the subject ([aa765c2](https://github.com/conventional-changelog/conventional-changelog-angular/commit/aa765c2))
339
-
340
-
341
-
342
- <a name="1.2.0"></a>
343
- # [1.2.0](https://github.com/conventional-changelog/conventional-changelog-angular/compare/v1.1.0...v1.2.0) (2016-05-10)
344
-
345
-
346
- ### Features
347
-
348
- * **template:** use context.repoUrl([2b5818b](https://github.com/conventional-changelog/conventional-changelog-angular/commit/2b5818b))
349
-
350
-
351
-
352
- <a name="1.1.0"></a>
353
- # [1.1.0](https://github.com/conventional-changelog/conventional-changelog-angular/compare/v1.0.0...v1.1.0) (2016-04-26)
354
-
355
-
356
- ### Bug Fixes
357
-
358
- * **template:** whitespace ([72f8b12](https://github.com/conventional-changelog/conventional-changelog-angular/commit/72f8b12))
359
- * update to reference conventional-changelog org ([cd1a75a](https://github.com/conventional-changelog/conventional-changelog-angular/commit/cd1a75a))
360
- * **template:** wrong version link if no host ([bb20a7b](https://github.com/conventional-changelog/conventional-changelog-angular/commit/bb20a7b)), closes [#8](https://github.com/conventional-changelog/conventional-changelog-angular/issues/8)
361
-
362
- ### Features
363
-
364
- * remove commit length restriction ([6aebb75](https://github.com/conventional-changelog/conventional-changelog-angular/commit/6aebb75)), closes [#12](https://github.com/conventional-changelog/conventional-changelog-angular/issues/12)
365
- * **github:** adds github-specific replacements for issues and users ([2633f73](https://github.com/conventional-changelog/conventional-changelog-angular/commit/2633f73)), closes [#12](https://github.com/conventional-changelog/conventional-changelog-angular/issues/12)
366
-
367
-
368
-
369
- <a name="1.0.0"></a>
370
- # [1.0.0](https://github.com/stevemao/conventional-changelog-angular/compare/v0.1.0...v1.0.0) (2016-02-05)
371
-
372
-
373
- ### Features
374
-
375
- * **writerOpts.transform:** do not discard commit if there is BREAKING CHANGE ([e67c4a1](https://github.com/stevemao/conventional-changelog-angular/commit/e67c4a1)), closes [ajoslin/conventional-changelog#127](https://github.com/ajoslin/conventional-changelog/issues/127) [angular/angular#5672](https://github.com/angular/angular/issues/5672)
376
-
377
-
378
-
379
- <a name="0.1.0"></a>
380
- # [0.1.0](https://github.com/stevemao/conventional-changelog-angular/compare/v0.0.2...v0.1.0) (2016-01-30)
381
-
382
-
383
-
384
-
385
- <a name="0.0.2"></a>
386
- ## [0.0.2](https://github.com/stevemao/conventional-changelog-angular/compare/v0.0.1...v0.0.2) (2016-01-30)
387
-
388
-
389
- ### Features
390
-
391
- * **exports:** export the promise ([60def39](https://github.com/stevemao/conventional-changelog-angular/commit/60def39))
392
-
393
-
394
-
395
- <a name="0.0.1"></a>
396
- ## 0.0.1 (2015-12-26)
397
-
398
-
399
- ### Features
400
-
401
- * **init:** extracting code from https://github.com/ajoslin/conventional-changelog ([79a8c6b](https://github.com/stevemao/conventional-changelog-angular/commit/79a8c6b))