conventional-changelog-angular 5.0.13 → 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.13",
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,7 +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"
34
+ },
35
+ "scripts": {
36
+ "test-windows": "mocha --timeout 30000"
38
37
  }
39
- }
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,408 +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.13](https://www.github.com/conventional-changelog/conventional-changelog/compare/conventional-changelog-angular-vconventional-changelog-angular@5.0.12...conventional-changelog-angular-v5.0.13) (2021-09-09)
7
-
8
-
9
- ### Bug Fixes
10
-
11
- * **conventional-commits-parser:** address CVE-2021-23425 ([#841](https://www.github.com/conventional-changelog/conventional-changelog/issues/841)) ([02b3d53](https://www.github.com/conventional-changelog/conventional-changelog/commit/02b3d53a0c142f0c28ee7d190d210c76a62887c2))
12
-
13
- ## [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)
14
-
15
- **Note:** Version bump only for package conventional-changelog-angular
16
-
17
-
18
-
19
-
20
-
21
- ## [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)
22
-
23
-
24
- ### Bug Fixes
25
-
26
- * **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))
27
-
28
-
29
-
30
-
31
-
32
- ## [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)
33
-
34
- **Note:** Version bump only for package conventional-changelog-angular
35
-
36
-
37
-
38
-
39
-
40
- ## [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)
41
-
42
-
43
- ### Bug Fixes
44
-
45
- * 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))
46
-
47
-
48
-
49
-
50
-
51
- ## [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)
52
-
53
-
54
- ### Bug Fixes
55
-
56
- * 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)
57
-
58
-
59
-
60
-
61
-
62
- ## [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)
63
-
64
-
65
- ### Bug Fixes
66
-
67
- * **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))
68
-
69
-
70
-
71
-
72
-
73
- ## [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)
74
-
75
-
76
- ### Bug Fixes
77
-
78
- * 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))
79
-
80
-
81
-
82
-
83
-
84
- <a name="5.0.1"></a>
85
- ## [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)
86
-
87
-
88
-
89
-
90
- **Note:** Version bump only for package conventional-changelog-angular
91
-
92
- <a name="5.0.0"></a>
93
- # [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)
94
-
95
-
96
- ### Features
97
-
98
- * 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)
99
-
100
-
101
- ### BREAKING CHANGES
102
-
103
- * Re-use parser options object between components of a preset. For some
104
- presets this may change the behavior of `conventional-recommended-bump`
105
- as the parser options object for the `conventional-recommended-bump` options
106
- within a preset were different than the parser options object for the
107
- `conventional-changelog` options within a preset.
108
-
109
- If you are not using `conventional-recommended-bump`, then this is
110
- **not** a breaking change for you.
111
-
112
-
113
-
114
-
115
- <a name="4.0.1"></a>
116
- ## [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)
117
-
118
-
119
- ### Bug Fixes
120
-
121
- * 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))
122
-
123
-
124
-
125
-
126
- <a name="4.0.0"></a>
127
- # [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)
128
-
129
-
130
- ### Chores
131
-
132
- * **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))
133
-
134
-
135
- ### Code Refactoring
136
-
137
- * 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)
138
-
139
-
140
- ### BREAKING CHANGES
141
-
142
- * **package:** Set the package's minimum required Node version to be the oldest LTS
143
- currently supported by the Node Release working group. At this time,
144
- that is Node 6 (which is in its Maintenance LTS phase).
145
- * Anchor tags are removed from the changelog header templates. The
146
- rendered Markdown will no longer contain anchor tags proceeding the
147
- version number header that constitutes the changelog header. This means
148
- that consumers of rendered markdown will not be able to use a URL that
149
- has been constructed to contain a version number anchor tag reference,
150
- since the anchor tag won't exist in the rendered markdown.
151
-
152
- It's stronly recomended consumers use the full URL path to the release
153
- page for a given version, as that URL is a permalink to that verison,
154
- contains all relavent release information, and does not, otherwise, rely
155
- on the anchor tag being excessible from the current page view.
156
-
157
- As an example, for version `2.0.0` of a GitHub project, the following
158
- URL should be used:
159
- - https://github.com/conventional-changelog/releaser-tools/releases/tag/v2.0.0
160
-
161
-
162
-
163
-
164
- <a name="3.0.7"></a>
165
- ## [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)
166
-
167
-
168
-
169
-
170
- **Note:** Version bump only for package conventional-changelog-angular
171
-
172
- <a name="3.0.6"></a>
173
- ## [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)
174
-
175
-
176
- ### Bug Fixes
177
-
178
- * revert previous change ([2f4530f](https://github.com/conventional-changelog/conventional-changelog/commit/2f4530f))
179
-
180
-
181
-
182
-
183
- <a name="3.0.5"></a>
184
- ## [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)
185
-
186
-
187
-
188
-
189
- **Note:** Version bump only for package conventional-changelog-angular
190
-
191
- <a name="3.0.4"></a>
192
- ## [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)
193
-
194
-
195
-
196
-
197
- **Note:** Version bump only for package conventional-changelog-angular
198
-
199
- <a name="3.0.3"></a>
200
- ## [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)
201
-
202
-
203
-
204
-
205
- **Note:** Version bump only for package conventional-changelog-angular
206
-
207
- <a name="3.0.2"></a>
208
- ## [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)
209
-
210
-
211
-
212
-
213
- **Note:** Version bump only for package conventional-changelog-angular
214
-
215
- <a name="3.0.1"></a>
216
- ## [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)
217
-
218
-
219
-
220
-
221
- **Note:** Version bump only for package conventional-changelog-angular
222
-
223
- <a name="3.0.0"></a>
224
- ## [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)
225
-
226
- ### Features
227
-
228
- * **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))
229
-
230
- ### BREAKING CHANGES
231
-
232
- 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".
233
-
234
- Former "chore" type has been replaced by a type "build" for commits on the build system and "ci" for commits regarding CI
235
-
236
- <a name="1.6.6"></a>
237
- ## [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)
238
-
239
-
240
-
241
-
242
- **Note:** Version bump only for package conventional-changelog-angular
243
-
244
- <a name="1.6.5"></a>
245
- ## [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)
246
-
247
-
248
-
249
-
250
- **Note:** Version bump only for package conventional-changelog-angular
251
-
252
- <a name="1.6.4"></a>
253
- ## [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)
254
-
255
-
256
-
257
-
258
- **Note:** Version bump only for package conventional-changelog-angular
259
-
260
- <a name="1.6.3"></a>
261
- ## [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)
262
-
263
-
264
-
265
-
266
- **Note:** Version bump only for package conventional-changelog-angular
267
-
268
- <a name="1.6.2"></a>
269
- ## [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)
270
-
271
-
272
-
273
-
274
- **Note:** Version bump only for package conventional-changelog-angular
275
-
276
- <a name="1.6.1"></a>
277
- ## [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)
278
-
279
-
280
-
281
-
282
- **Note:** Version bump only for package conventional-changelog-angular
283
-
284
- <a name="1.6.0"></a>
285
- # [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)
286
-
287
-
288
- ### Features
289
-
290
- * **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)
291
-
292
-
293
-
294
-
295
- <a name="1.5.3"></a>
296
- ## [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)
297
-
298
-
299
-
300
-
301
- **Note:** Version bump only for package conventional-changelog-angular
302
-
303
- <a name="1.5.2"></a>
304
- ## [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)
305
-
306
-
307
-
308
-
309
- **Note:** Version bump only for package conventional-changelog-angular
310
-
311
- <a name="1.5.1"></a>
312
- ## [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)
313
-
314
- <a name="1.5.0"></a>
315
- # [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)
316
-
317
-
318
- ### Bug Fixes
319
-
320
- * **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)
321
-
322
-
323
- ### Features
324
-
325
- * **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))
326
-
327
- <a name="1.4.0"></a>
328
- # [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)
329
-
330
-
331
- ### Features
332
-
333
- * **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))
334
-
335
- <a name="1.3.3"></a>
336
- ## [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)
337
-
338
- <a name="1.3.0"></a>
339
- # [1.3.0](https://github.com/conventional-changelog/conventional-changelog-angular/compare/v1.2.0...v1.3.0) (2016-08-06)
340
-
341
-
342
- ### Features
343
-
344
- * **noteKeywords:** make BREAKING CHANGE more forgiving ([7dce559](https://github.com/conventional-changelog/conventional-changelog-angular/commit/7dce559))
345
- * **references:** remove references that already appear in the subject ([aa765c2](https://github.com/conventional-changelog/conventional-changelog-angular/commit/aa765c2))
346
-
347
-
348
-
349
- <a name="1.2.0"></a>
350
- # [1.2.0](https://github.com/conventional-changelog/conventional-changelog-angular/compare/v1.1.0...v1.2.0) (2016-05-10)
351
-
352
-
353
- ### Features
354
-
355
- * **template:** use context.repoUrl([2b5818b](https://github.com/conventional-changelog/conventional-changelog-angular/commit/2b5818b))
356
-
357
-
358
-
359
- <a name="1.1.0"></a>
360
- # [1.1.0](https://github.com/conventional-changelog/conventional-changelog-angular/compare/v1.0.0...v1.1.0) (2016-04-26)
361
-
362
-
363
- ### Bug Fixes
364
-
365
- * **template:** whitespace ([72f8b12](https://github.com/conventional-changelog/conventional-changelog-angular/commit/72f8b12))
366
- * update to reference conventional-changelog org ([cd1a75a](https://github.com/conventional-changelog/conventional-changelog-angular/commit/cd1a75a))
367
- * **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)
368
-
369
- ### Features
370
-
371
- * 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)
372
- * **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)
373
-
374
-
375
-
376
- <a name="1.0.0"></a>
377
- # [1.0.0](https://github.com/stevemao/conventional-changelog-angular/compare/v0.1.0...v1.0.0) (2016-02-05)
378
-
379
-
380
- ### Features
381
-
382
- * **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)
383
-
384
-
385
-
386
- <a name="0.1.0"></a>
387
- # [0.1.0](https://github.com/stevemao/conventional-changelog-angular/compare/v0.0.2...v0.1.0) (2016-01-30)
388
-
389
-
390
-
391
-
392
- <a name="0.0.2"></a>
393
- ## [0.0.2](https://github.com/stevemao/conventional-changelog-angular/compare/v0.0.1...v0.0.2) (2016-01-30)
394
-
395
-
396
- ### Features
397
-
398
- * **exports:** export the promise ([60def39](https://github.com/stevemao/conventional-changelog-angular/commit/60def39))
399
-
400
-
401
-
402
- <a name="0.0.1"></a>
403
- ## 0.0.1 (2015-12-26)
404
-
405
-
406
- ### Features
407
-
408
- * **init:** extracting code from https://github.com/ajoslin/conventional-changelog ([79a8c6b](https://github.com/stevemao/conventional-changelog-angular/commit/79a8c6b))