From d7e3d12d2052654d3e724b595e7611843594dfe7 Mon Sep 17 00:00:00 2001 From: artmsilva Date: Wed, 26 Jan 2022 10:03:12 -0500 Subject: [PATCH] chore(release): publish --- CHANGELOG.md | 11 +++++++++++ lerna.json | 12 +++++++++--- ssr-testing/CHANGELOG.md | 8 ++++++++ ssr-testing/package.json | 12 ++++++------ ui/box/CHANGELOG.md | 8 ++++++++ ui/box/package.json | 4 ++-- ui/icon/CHANGELOG.md | 8 ++++++++ ui/icon/package.json | 4 ++-- ui/kit/CHANGELOG.md | 8 ++++++++ ui/kit/package.json | 10 +++++----- ui/theme/CHANGELOG.md | 11 +++++++++++ ui/theme/package.json | 2 +- ui/visually-hidden/CHANGELOG.md | 8 ++++++++ ui/visually-hidden/package.json | 4 ++-- 14 files changed, 89 insertions(+), 21 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fb60edd6d..4e323bf1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.2.0](https://github.com/WPMedia/wpds-ui-kit/compare/v0.1.0...v0.2.0) (2022-01-26) + + +### Features + +* add dark mode styles ([d84669a](https://github.com/WPMedia/wpds-ui-kit/commit/d84669a830fdbefe72f58bbee56718bf8de21b09)) + + + + + # [0.1.0](https://github.com/WPMedia/wpds-ui-kit/compare/v0.1.0-experimental.21...v0.1.0) (2022-01-24) **Note:** Version bump only for package root diff --git a/lerna.json b/lerna.json index 4a869a9d6..df997d087 100644 --- a/lerna.json +++ b/lerna.json @@ -1,5 +1,8 @@ { - "packages": ["./ui/*", "./ssr-testing"], + "packages": [ + "./ui/*", + "./ssr-testing" + ], "useWorkspaces": true, "npmClient": "npm", "command": { @@ -12,10 +15,13 @@ "conventionalCommits": true, "message": "chore(release): publish", "npmClient": "npm", - "ignoreChanges": ["**/stories/**", "**/tests/**"], + "ignoreChanges": [ + "**/stories/**", + "**/tests/**" + ], "registry": "https://registry.npmjs.org/", "allowBranch": "main" } }, - "version": "0.1.0" + "version": "0.2.0" } diff --git a/ssr-testing/CHANGELOG.md b/ssr-testing/CHANGELOG.md index 08c451cd4..6628bbd29 100644 --- a/ssr-testing/CHANGELOG.md +++ b/ssr-testing/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.2.0](https://github.com/WPMedia/wpds-ui-kit/compare/v0.1.0...v0.2.0) (2022-01-26) + +**Note:** Version bump only for package ssr-testing + + + + + # [0.1.0](https://github.com/WPMedia/wpds-ui-kit/compare/v0.1.0-experimental.21...v0.1.0) (2022-01-24) **Note:** Version bump only for package ssr-testing diff --git a/ssr-testing/package.json b/ssr-testing/package.json index 346cf2980..97985d0db 100644 --- a/ssr-testing/package.json +++ b/ssr-testing/package.json @@ -1,6 +1,6 @@ { "name": "ssr-testing", - "version": "0.1.0", + "version": "0.2.0", "private": true, "description": "", "main": "index.js", @@ -15,11 +15,11 @@ "@next/bundle-analyzer": "^12.0.7", "@washingtonpost/site-components": "latest", "@washingtonpost/wpds-assets": "^1.1.13", - "@washingtonpost/wpds-box": "0.1.0", - "@washingtonpost/wpds-icon": "0.1.0", - "@washingtonpost/wpds-theme": "0.1.0", - "@washingtonpost/wpds-ui-kit": "0.1.0", - "@washingtonpost/wpds-visually-hidden": "0.1.0", + "@washingtonpost/wpds-box": "0.2.0", + "@washingtonpost/wpds-icon": "0.2.0", + "@washingtonpost/wpds-theme": "0.2.0", + "@washingtonpost/wpds-ui-kit": "0.2.0", + "@washingtonpost/wpds-visually-hidden": "0.2.0", "next": "^12.0.4", "react": "^17.0.2", "react-dom": "^17.0.2" diff --git a/ui/box/CHANGELOG.md b/ui/box/CHANGELOG.md index 89837b884..8a794ba4e 100644 --- a/ui/box/CHANGELOG.md +++ b/ui/box/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.2.0](https://github.com/WPMedia/wpds-ui-kit/compare/v0.1.0...v0.2.0) (2022-01-26) + +**Note:** Version bump only for package @washingtonpost/wpds-box + + + + + # [0.1.0](https://github.com/WPMedia/wpds-ui-kit/compare/v0.1.0-experimental.21...v0.1.0) (2022-01-24) **Note:** Version bump only for package @washingtonpost/wpds-box diff --git a/ui/box/package.json b/ui/box/package.json index 593e9a1bb..29df24807 100644 --- a/ui/box/package.json +++ b/ui/box/package.json @@ -1,6 +1,6 @@ { "name": "@washingtonpost/wpds-box", - "version": "0.1.0", + "version": "0.2.0", "description": "> TODO: description", "author": "artmsilva ", "homepage": "https://github.com/WPMedia/wpds-ui-kit#readme", @@ -39,7 +39,7 @@ }, "dependencies": { "@babel/runtime": "^7.13.10", - "@washingtonpost/wpds-theme": "0.1.0" + "@washingtonpost/wpds-theme": "0.2.0" }, "gitHead": "14d42419b2fda458174d05746c3d2bf26f4e9201" } diff --git a/ui/icon/CHANGELOG.md b/ui/icon/CHANGELOG.md index c577d3bd5..eb6fd3acb 100644 --- a/ui/icon/CHANGELOG.md +++ b/ui/icon/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.2.0](https://github.com/WPMedia/wpds-ui-kit/compare/v0.1.0...v0.2.0) (2022-01-26) + +**Note:** Version bump only for package @washingtonpost/wpds-icon + + + + + # [0.1.0](https://github.com/WPMedia/wpds-ui-kit/compare/v0.1.0-experimental.21...v0.1.0) (2022-01-24) **Note:** Version bump only for package @washingtonpost/wpds-icon diff --git a/ui/icon/package.json b/ui/icon/package.json index c62b54695..c477c5d57 100644 --- a/ui/icon/package.json +++ b/ui/icon/package.json @@ -1,6 +1,6 @@ { "name": "@washingtonpost/wpds-icon", - "version": "0.1.0", + "version": "0.2.0", "description": "> TODO: description", "author": "artmsilva ", "homepage": "https://github.com/WPMedia/wpds-ui-kit#readme", @@ -39,7 +39,7 @@ }, "dependencies": { "@babel/runtime": "^7.13.10", - "@washingtonpost/wpds-visually-hidden": "0.1.0" + "@washingtonpost/wpds-visually-hidden": "0.2.0" }, "gitHead": "14d42419b2fda458174d05746c3d2bf26f4e9201" } diff --git a/ui/kit/CHANGELOG.md b/ui/kit/CHANGELOG.md index b81c77881..b83bb9ad4 100644 --- a/ui/kit/CHANGELOG.md +++ b/ui/kit/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.2.0](https://github.com/WPMedia/wpds-ui-kit/compare/v0.1.0...v0.2.0) (2022-01-26) + +**Note:** Version bump only for package @washingtonpost/wpds-ui-kit + + + + + # [0.1.0](https://github.com/WPMedia/wpds-ui-kit/compare/v0.1.0-experimental.21...v0.1.0) (2022-01-24) **Note:** Version bump only for package @washingtonpost/wpds-ui-kit diff --git a/ui/kit/package.json b/ui/kit/package.json index 6eb16b36a..240ee6295 100644 --- a/ui/kit/package.json +++ b/ui/kit/package.json @@ -1,6 +1,6 @@ { "name": "@washingtonpost/wpds-ui-kit", - "version": "0.1.0", + "version": "0.2.0", "description": "> TODO: description", "author": "artmsilva ", "homepage": "https://github.com/WPMedia/wpds-ui-kit#readme", @@ -30,10 +30,10 @@ }, "dependencies": { "@babel/runtime": "^7.13.10", - "@washingtonpost/wpds-box": "0.1.0", - "@washingtonpost/wpds-icon": "0.1.0", - "@washingtonpost/wpds-theme": "0.1.0", - "@washingtonpost/wpds-visually-hidden": "0.1.0" + "@washingtonpost/wpds-box": "0.2.0", + "@washingtonpost/wpds-icon": "0.2.0", + "@washingtonpost/wpds-theme": "0.2.0", + "@washingtonpost/wpds-visually-hidden": "0.2.0" }, "devDependencies": { "@swc/cli": "^0.1.55", diff --git a/ui/theme/CHANGELOG.md b/ui/theme/CHANGELOG.md index 9474fc9ed..12610ba6f 100644 --- a/ui/theme/CHANGELOG.md +++ b/ui/theme/CHANGELOG.md @@ -3,6 +3,17 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.2.0](https://github.com/WPMedia/wpds-ui-kit/compare/v0.1.0...v0.2.0) (2022-01-26) + + +### Features + +* add dark mode styles ([d84669a](https://github.com/WPMedia/wpds-ui-kit/commit/d84669a830fdbefe72f58bbee56718bf8de21b09)) + + + + + # [0.1.0](https://github.com/WPMedia/wpds-ui-kit/compare/v0.1.0-experimental.21...v0.1.0) (2022-01-24) **Note:** Version bump only for package @washingtonpost/wpds-theme diff --git a/ui/theme/package.json b/ui/theme/package.json index f091d6e8f..494870ca6 100644 --- a/ui/theme/package.json +++ b/ui/theme/package.json @@ -1,6 +1,6 @@ { "name": "@washingtonpost/wpds-theme", - "version": "0.1.0", + "version": "0.2.0", "description": "> TODO: description", "author": "artmsilva ", "homepage": "https://github.com/WPMedia/wpds-ui-kit#readme", diff --git a/ui/visually-hidden/CHANGELOG.md b/ui/visually-hidden/CHANGELOG.md index 9032ea06e..7a71c4f7e 100644 --- a/ui/visually-hidden/CHANGELOG.md +++ b/ui/visually-hidden/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [0.2.0](https://github.com/WPMedia/wpds-ui-kit/compare/v0.1.0...v0.2.0) (2022-01-26) + +**Note:** Version bump only for package @washingtonpost/wpds-visually-hidden + + + + + # [0.1.0](https://github.com/WPMedia/wpds-ui-kit/compare/v0.1.0-experimental.21...v0.1.0) (2022-01-24) **Note:** Version bump only for package @washingtonpost/wpds-visually-hidden diff --git a/ui/visually-hidden/package.json b/ui/visually-hidden/package.json index 0b2dc5d93..a38431245 100644 --- a/ui/visually-hidden/package.json +++ b/ui/visually-hidden/package.json @@ -1,6 +1,6 @@ { "name": "@washingtonpost/wpds-visually-hidden", - "version": "0.1.0", + "version": "0.2.0", "description": "> TODO: description", "author": "artmsilva ", "homepage": "https://github.com/WPMedia/wpds-ui-kit#readme", @@ -39,7 +39,7 @@ }, "dependencies": { "@babel/runtime": "^7.13.10", - "@washingtonpost/wpds-theme": "0.1.0" + "@washingtonpost/wpds-theme": "0.2.0" }, "gitHead": "14d42419b2fda458174d05746c3d2bf26f4e9201" }