diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ace0952..032c01e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [1.6.0](https://github.com/Kong/icons/compare/v1.5.0...v1.6.0) (2023-09-20) + + +### Features + +* add world-private icon ([#69](https://github.com/Kong/icons/issues/69)) ([0998c42](https://github.com/Kong/icons/commit/0998c42e9ddfc050ca28d2e0baf03744f8679ead)) + # [1.5.0](https://github.com/Kong/icons/compare/v1.4.3...v1.5.0) (2023-09-13) diff --git a/package.json b/package.json index f9f1dfbc..2a3cc806 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@kong/icons", - "version": "1.5.0", + "version": "1.6.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 2242a400..ad6947cb 100644 --- a/scripts/utilities/__snapshots__/generate-icon-components.spec.ts.snap +++ b/scripts/utilities/__snapshots__/generate-icon-components.spec.ts.snap @@ -236,5 +236,6 @@ exports[`generate > does not remove icons from the previous build 1`] = ` "WarningOutlineIcon.vue", "WorkspacesIcon.vue", "WorldIcon.vue", + "WorldPrivateIcon.vue", ] `; diff --git a/src/component-list.ts b/src/component-list.ts index 885de3d7..05ac45f5 100644 --- a/src/component-list.ts +++ b/src/component-list.ts @@ -124,4 +124,5 @@ export default [ 'WarningOutlineIcon.vue', 'WorkspacesIcon.vue', 'WorldIcon.vue', + 'WorldPrivateIcon.vue', ]