diff --git a/CHANGELOG.md b/CHANGELOG.md index 6dfebe6b..83728d39 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [1.20.0](https://github.com/Kong/icons/compare/v1.19.1...v1.20.0) (2024-11-18) + + +### Features + +* **icons:** location-on and key icon ([#446](https://github.com/Kong/icons/issues/446)) ([56aae62](https://github.com/Kong/icons/commit/56aae62504124e734ea7ac0e9c8b1e51e9e6a25f)) + ## [1.19.1](https://github.com/Kong/icons/compare/v1.19.0...v1.19.1) (2024-11-07) diff --git a/package.json b/package.json index 7ddca8d9..75296d9e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@kong/icons", - "version": "1.19.1", + "version": "1.20.0", "description": "Kong Icon Library", "license": "Apache-2.0", "type": "module", diff --git a/scripts/utilities/__snapshots__/generate-icon-components.spec.ts.snap b/scripts/utilities/__snapshots__/generate-icon-components.spec.ts.snap index c1c9709b..f91920c8 100644 --- a/scripts/utilities/__snapshots__/generate-icon-components.spec.ts.snap +++ b/scripts/utilities/__snapshots__/generate-icon-components.spec.ts.snap @@ -735,6 +735,7 @@ exports[`generate > does not remove icons from the previous build 1`] = ` "InsightsIcon.vue", "InsomniaIcon.vue", "ItalicIcon.vue", + "KeyIcon.vue", "KeyboardReturnIcon.vue", "KongGradientIcon.vue", "KongIcon.vue", @@ -759,6 +760,7 @@ exports[`generate > does not remove icons from the previous build 1`] = ` "ListIcon.vue", "ListOrderedIcon.vue", "ListUnorderedIcon.vue", + "LocationIcon.vue", "LockIcon.vue", "MarkIcon.vue", "MarkdownIcon.vue", diff --git a/src/component-list.ts b/src/component-list.ts index 4ffaba3c..7869bbab 100644 --- a/src/component-list.ts +++ b/src/component-list.ts @@ -328,6 +328,7 @@ export default [ 'InsightsIcon.vue', 'InsomniaIcon.vue', 'ItalicIcon.vue', + 'KeyIcon.vue', 'KeyboardReturnIcon.vue', 'KongGradientIcon.vue', 'KongIcon.vue', @@ -352,6 +353,7 @@ export default [ 'ListIcon.vue', 'ListOrderedIcon.vue', 'ListUnorderedIcon.vue', + 'LocationIcon.vue', 'LockIcon.vue', 'MarkIcon.vue', 'MarkdownIcon.vue',