diff --git a/changelog/next/2017-08-11T15:48:32.363Z_addition_all.yml b/changelog/next/2017-08-11T15:48:32.363Z_addition_all.yml new file mode 100644 index 0000000..66a0970 --- /dev/null +++ b/changelog/next/2017-08-11T15:48:32.363Z_addition_all.yml @@ -0,0 +1,6 @@ +dateTime: '2017-08-11T15:48:32.363Z' +component: all +kind: addition +description: >- + New entry kinds "Security", "Removed" & "Deprecated" from + [keepachangelog](http://keepachangelog.com/) diff --git a/src/templates/defaultTemplate.js b/src/templates/defaultTemplate.js index 641a7a4..73904cc 100644 --- a/src/templates/defaultTemplate.js +++ b/src/templates/defaultTemplate.js @@ -11,7 +11,10 @@ import type { const entryKindToReadable = { change: 'Changed', addition: 'Added', - fix: 'Fixed' + fix: 'Fixed', + security: 'Security', + removal: 'Removed', + deprecated: 'Deprecated' }; export default function defaultTemplate( diff --git a/src/types.js b/src/types.js index d6f9295..91f241b 100644 --- a/src/types.js +++ b/src/types.js @@ -26,7 +26,7 @@ export type VersionType = { patch: number }; -export type EntryKindType = 'addition' | 'change' | 'fix'; +export type EntryKindType = 'addition' | 'change' | 'fix' | 'security' | 'removal' | 'deprecated'; export type EntryType = { component: ?string,