Skip to content
This repository has been archived by the owner on Mar 27, 2023. It is now read-only.

Commit

Permalink
chore: bump release version to v5.4.1
Browse files Browse the repository at this point in the history
Signed-off-by: Bozhidar Dryanovski <[email protected]>
  • Loading branch information
bdryanovski committed Jun 24, 2021
1 parent 6ce2e22 commit 2e39417
Show file tree
Hide file tree
Showing 12 changed files with 94 additions and 24 deletions.
2 changes: 2 additions & 0 deletions changelogs/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,7 @@
"Datalist",
"Date Picker",
"Design Tokens",
"Description List",
"Documentation",
"Dropdown",
"Form",
Expand All @@ -110,6 +111,7 @@
"Password",
"Popover",
"Progress Bar",
"Pagination",
"Radio",
"Range",
"React",
Expand Down
69 changes: 69 additions & 0 deletions changelogs/v5.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,75 @@
{
"$schema": "./schema.json",
"releases": [
{
"version": "5.4.1",
"date": "2021-06-24",
"description": "This is a feature and bug release.",
"feat": [
{
"issue": 6079,
"title": "Add description list element styling",
"project": "Core",
"scope": "Description List"
},
{
"issue": 6074,
"title": "Adding global state service",
"project": "Core",
"scope": "Modal"
}
],
"fix": [
{
"issue": 6050,
"title": "Input lines are now proper contrast",
"project": "Core",
"scope": "Form"
},
{
"issue": 6081,
"title": "Fix anchor link hovers in clr-angular header",
"project": "Angular",
"scope": "Header"
},
{
"issue": 6057,
"title": "Remove memory leaks inside the `DropdownFocusHandler`",
"project": "Angular",
"scope": "Dropdown"
},
{
"issue": 6075,
"title": "Add missing React counterpart for Clarity Core pagination",
"project": "Core",
"scope": "Pagination"
},
{
"issue": 6056,
"title": "Remove line-height from control-label",
"project": "Angular",
"scope": "Input"
},
{
"issue": 6067,
"title": "Relax Angular dependency for @cds/angular for v9+",
"project": "Core",
"scope": ""
},
{
"issue": 6055,
"title": "Unsubscribe from `ButtonInGroupService.changes`",
"project": "Core",
"scope": "Button"
},
{
"issue": 6048,
"title": "Disabled buttons should not be enabled on loadingState",
"project": "Core",
"scope": "Button"
}
]
},
{
"version": "5.4.0",
"date": "2021-06-10",
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "clarity",
"version": "5.4.0",
"version": "5.4.1",
"private": true,
"workspaces": {
"packages": [
Expand Down
2 changes: 1 addition & 1 deletion packages/angular/projects/cds-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cds/angular",
"version": "5.4.0",
"version": "5.4.1",
"description": "Core component modules for Clarity Angular",
"keywords": [
"ng-add",
Expand Down
2 changes: 1 addition & 1 deletion packages/angular/projects/clr-angular/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clr/angular",
"version": "5.4.0",
"version": "5.4.1",
"description": "Angular components for Clarity",
"homepage": "https://clarity.design",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion packages/core/npm.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cds/core",
"version": "5.4.0",
"version": "5.4.1",
"license": "MIT",
"author": "clarity",
"description": "Clarity Design System Web Components",
Expand Down
2 changes: 1 addition & 1 deletion packages/eslint-plugin-clarity-adoption/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clr/eslint-plugin-clarity-adoption",
"version": "5.4.0",
"version": "5.4.1",
"description": "A set of ESLint rules for Clarity Core adoption.",
"main": "index.js",
"typings": "index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/icons/npm.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clr/icons",
"version": "5.4.0",
"version": "5.4.1",
"description": "Custom Element Icons for Clarity",
"homepage": "https://clarity.design",
"main": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cds/react",
"version": "5.4.0",
"version": "5.4.1",
"scripts": {
"start": "npm-run-all core:build build -p build:ts:watch dev:start",
"dev:start": "parcel index.html --cache-dir=./.parcel-cache",
Expand Down
2 changes: 1 addition & 1 deletion packages/ui/npm.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@clr/ui",
"version": "5.4.0",
"version": "5.4.1",
"description": "CSS for Clarity",
"homepage": "https://clarity.design",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions scripts/copy-version.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2016-2020 VMware, Inc. All Rights Reserved.
* Copyright (c) 2016-2021 VMware, Inc. All Rights Reserved.
* This software is released under MIT license.
* The full license information can be found in LICENSE in the root directory of this project.
*/
Expand All @@ -26,5 +26,5 @@ files.forEach(file => {
file = path.join(process.cwd(), file);
const json = require(file);
json.version = pkg.version;
fs.writeFileSync(file, JSON.stringify(json, null, ' '), { encoding: 'utf8' });
fs.writeFileSync(file, JSON.stringify(json, null, 2), { encoding: 'utf8' });
});
27 changes: 13 additions & 14 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4150,7 +4150,7 @@
integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==

"@cds/angular@./dist/angular":
version "5.3.0"
version "5.4.0"
dependencies:
jsdom "^16.5.3"
tslib "^2.0.0"
Expand All @@ -4172,7 +4172,7 @@
normalize.css "^8.0.1"

"@clr/angular@./dist/clr-angular":
version "5.3.0"
version "5.4.0"

"@clr/icons@./dist/clr-icons":
version "0.0.0"
Expand Down Expand Up @@ -4982,15 +4982,6 @@
resolved "https://registry.yarnpkg.com/@lit/reactive-element/-/reactive-element-1.0.0-rc.2.tgz#f24dba16ea571a08dca70f1783bd2ca5ec8de3ee"
integrity sha512-cujeIl5Ei8FC7UHf4/4Q3bRJOtdTe1vpJV/JEBYCggedmQ+2P8A2oz7eE+Vxi6OJ4nc0X+KZxXnBoH4QrEbmEQ==

"@marionebl/sander@^0.6.0":
version "0.6.1"
resolved "https://registry.yarnpkg.com/@marionebl/sander/-/sander-0.6.1.tgz#1958965874f24bc51be48875feb50d642fc41f7b"
integrity sha1-GViWWHTyS8Ub5Ih1/rUNZC/EH3s=
dependencies:
graceful-fs "^4.1.3"
mkdirp "^0.5.1"
rimraf "^2.5.2"

"@mdjs/core@^0.4.1":
version "0.4.1"
resolved "https://registry.yarnpkg.com/@mdjs/core/-/core-0.4.1.tgz#7c6a0383a75aa7c2268b284a962ebffcd648fc94"
Expand Down Expand Up @@ -11749,7 +11740,7 @@ chalk@^0.5.1:
strip-ansi "^0.3.0"
supports-color "^0.2.0"

chalk@^1.0.0, chalk@^1.1.1, chalk@^1.1.3:
chalk@^1.0.0, chalk@^1.1.0, chalk@^1.1.1, chalk@^1.1.3:
version "1.1.3"
resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98"
integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=
Expand Down Expand Up @@ -13516,7 +13507,7 @@ cross-spawn@^6.0.0, cross-spawn@^6.0.4, cross-spawn@^6.0.5:
shebang-command "^1.2.0"
which "^1.2.9"

cross-spawn@^7.0.0, cross-spawn@^7.0.2:
cross-spawn@^7.0.0, cross-spawn@^7.0.2, cross-spawn@^7.0.3:
version "7.0.3"
resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6"
integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==
Expand Down Expand Up @@ -16972,6 +16963,14 @@ find-up@^3.0.0:
dependencies:
locate-path "^3.0.0"

find-up@^5.0.0:
version "5.0.0"
resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc"
integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==
dependencies:
locate-path "^6.0.0"
path-exists "^4.0.0"

find-yarn-workspace-root@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-2.0.0.tgz#f47fb8d239c900eb78179aa81b66673eac88f7bd"
Expand Down Expand Up @@ -22482,7 +22481,7 @@ lodash@^4.17.19:
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.19.tgz#e48ddedbe30b3321783c5b4301fbd353bc1e4a4b"
integrity sha512-JNvd8XER9GQX0v2qJgsaN/mzFCNA5BRe/j8JN9d+tWyGLSodKQHKFicdwNYzWwI3wjRnaKPsGj1XkBjx/F96DQ==

lodash@^4.17.20, lodash@^4.17.21, lodash@^4.7.0:
lodash@^4.17.20, lodash@^4.17.21, lodash@^4.5.1, lodash@^4.7.0:
version "4.17.21"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c"
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
Expand Down

0 comments on commit 2e39417

Please sign in to comment.