Skip to content

Commit c17e5c6

Browse files
committed
chore: release 1.0.0
1 parent 5e4a664 commit c17e5c6

File tree

27 files changed

+159
-42
lines changed

27 files changed

+159
-42
lines changed

.github/actions/pre-release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const OTP = options.otp;
2424

2525
const run = async () => {
2626
const FILES = await glob("**/packages/**/package.json", {
27-
"ignore": ["**/node_modules/**/*.*", "**/dist/**/*.*", "**/playground/**/*.*"]
27+
"ignore": ["**/node_modules/**/*.*", "**/dist/**/*.*", "**/playground/**/*.*", "**/create-package/**/*.*"],
2828
});
2929

3030
// Step 1: process package.json files

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.0.0](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.16...v1.0.0) (2021-11-10)
7+
8+
9+
👏 **We are happy to announce our first stable 1.0.0 version of UI5 Web Components** 👏
10+
11+
612
# [1.0.0-rc.16](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.15...v1.0.0-rc.16) (2021-11-09)
713

814
### New Component

lerna.json

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"packages": [
3+
"packages/tools",
4+
"packages/base",
5+
"packages/localization",
6+
"packages/theming",
7+
"packages/icons",
8+
"packages/icons-tnt",
9+
"packages/icons-business-suite",
10+
"packages/main",
11+
"packages/fiori",
12+
"packages/ie11"
13+
],
14+
"version": "1.0.0",
15+
"command": {
16+
"publish": {
17+
"conventionalCommits": true
18+
},
19+
"version": {
20+
"message": "chore(release): publish %s"
21+
}
22+
},
23+
"npmClient": "yarn",
24+
"useWorkspaces": true
25+
}

package.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@
7373
"cross-env": "^7.0.3",
7474
"glob": "^7.2.0",
7575
"glob-promise": "^4.1.0",
76+
"lerna": "^3.13.3",
7677
"npm-run-all": "^4.1.3",
7778
"nps": "^5.10.0",
7879
"wsrun": "^5.2.4"
@@ -90,5 +91,6 @@
9091
"packages/tools",
9192
"packages/playground",
9293
"packages/create-package"
93-
]
94+
],
95+
"name": "ui5-webcomponents"
9496
}

packages/base/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.0.0](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.16...v1.0.0) (2021-11-10)
7+
8+
9+
**Note:** Version bump only for package @ui5/webcomponents-base
10+
11+
12+
13+
14+
615
# [1.0.0-rc.16](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.15...v1.0.0-rc.16) (2021-11-09)
716

817

packages/base/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ui5/webcomponents-base",
3-
"version": "1.0.0-rc.16",
3+
"version": "1.0.0",
44
"description": "UI5 Web Components: webcomponents.base",
55
"author": "SAP SE (https://www.sap.com)",
66
"license": "Apache-2.0",
@@ -37,7 +37,7 @@
3737
"devDependencies": {
3838
"@buxlabs/amd-to-es6": "0.16.1",
3939
"@openui5/sap.ui.core": "1.94.0",
40-
"@ui5/webcomponents-tools": "1.0.0-rc.16",
40+
"@ui5/webcomponents-tools": "1.0.0",
4141
"chromedriver": "95.0.0",
4242
"clean-css": "^5.2.2",
4343
"copy-and-watch": "^0.1.5",

packages/create-package/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,11 @@ const createWebcomponentsPackage = async () => {
130130
"./*": "./dist/*",
131131
},
132132
"dependencies": {
133-
"@ui5/webcomponents-base": "1.0.0-rc.16",
134-
"@ui5/webcomponents-theming": "1.0.0-rc.16",
133+
"@ui5/webcomponents-base": "1.0.0",
134+
"@ui5/webcomponents-theming": "1.0.0",
135135
},
136136
"devDependencies": {
137-
"@ui5/webcomponents-tools": "1.0.0-rc.16",
137+
"@ui5/webcomponents-tools": "1.0.0",
138138
"chromedriver": "*",
139139
},
140140
};

packages/fiori/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.0.0](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.16...v1.0.0) (2021-11-10)
7+
8+
9+
**Note:** Version bump only for package @ui5/webcomponents-fiori
10+
11+
12+
13+
614
# [1.0.0-rc.16](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.15...v1.0.0-rc.16) (2021-11-09)
715

816

packages/fiori/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ui5/webcomponents-fiori",
3-
"version": "1.0.0-rc.16",
3+
"version": "1.0.0",
44
"description": "UI5 Web Components: webcomponents.fiori",
55
"ui5": {
66
"webComponentsPackage": true
@@ -40,15 +40,15 @@
4040
"directory": "packages/fiori"
4141
},
4242
"dependencies": {
43-
"@ui5/webcomponents": "1.0.0-rc.16",
44-
"@ui5/webcomponents-base": "1.0.0-rc.16",
45-
"@ui5/webcomponents-icons": "1.0.0-rc.16",
46-
"@ui5/webcomponents-ie11": "1.0.0-rc.16",
47-
"@ui5/webcomponents-theming": "1.0.0-rc.16",
43+
"@ui5/webcomponents": "1.0.0",
44+
"@ui5/webcomponents-base": "1.0.0",
45+
"@ui5/webcomponents-icons": "1.0.0",
46+
"@ui5/webcomponents-ie11": "1.0.0",
47+
"@ui5/webcomponents-theming": "1.0.0",
4848
"@zxing/library": "^0.18.3"
4949
},
5050
"devDependencies": {
51-
"@ui5/webcomponents-tools": "1.0.0-rc.16",
51+
"@ui5/webcomponents-tools": "1.0.0",
5252
"chromedriver": "95.0.0"
5353
}
5454
}

packages/icons-business-suite/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,15 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [1.0.0](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.16...v1.0.0) (2021-11-10)
7+
8+
9+
**Note:** Version bump only for package @ui5/webcomponents-business-suite
10+
11+
12+
13+
14+
615
# [1.0.0-rc.16](https://github.com/SAP/ui5-webcomponents/compare/v1.0.0-rc.15...v1.0.0-rc.16) (2021-07-23)
716

817

0 commit comments

Comments
 (0)