Skip to content

Commit 74000b1

Browse files
chore: Release (#1786)
* Reconcile release CHANGELOGs * Release infrastructure
1 parent df7d164 commit 74000b1

File tree

31 files changed

+223
-68
lines changed

31 files changed

+223
-68
lines changed

.github/workflows/canary-release.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,21 +21,30 @@ jobs:
2121
with:
2222
ref: main
2323
fetch-depth: 0
24+
2425
- name: Fetch all tags
2526
run: |
2627
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
28+
2729
- name: Install dependencies
2830
run: |
2931
yarn install
32+
3033
- name: Build packages
3134
run: |
3235
yarn build
36+
3337
- name: Create canary release
3438
run: |
3539
npx lerna version prerelease --conventional-commits --no-git-tag-version --no-push --preid canary --yes --exact
3640
git config --local user.email "[email protected]"
3741
git config --local user.name "GitHub Action"
3842
git commit -am "chore: Publish"
43+
44+
- run: echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} > .npmrc
45+
env:
46+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
47+
3948
- name: Publish to NPM registry with canary tag
4049
run: npx lerna publish from-package --yes --dist-tag canary
4150
env:

.github/workflows/release-pull-request.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,19 @@ jobs:
2121
with:
2222
ref: main
2323
fetch-depth: 0
24+
2425
- name: Fetch all tags
2526
run: |
2627
git fetch --depth=1 origin +refs/tags/*:refs/tags/*
28+
2729
- name: Install dependencies
2830
run: |
2931
yarn install
32+
3033
- name: Bump version
3134
run: |
3235
yarn bumpversion
36+
3337
- name: Create PR
3438
uses: peter-evans/create-pull-request@v3
3539
with:

.github/workflows/release.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,9 @@ jobs:
6262
env:
6363
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
6464

65+
- run: echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} > .npmrc
66+
env:
67+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
68+
6569
- name: Publish to NPM registry
6670
run: npx lerna publish from-package --yes
67-
env:
68-
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

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+
# [0.10.0](https://github.com/looker-open-source/components/compare/v0.9.29...v0.10.0) (2021-01-19)
7+
8+
### Bug Fixes
9+
10+
- Properly configure build for tree-shaking support ([9202b72](https://github.com/looker-open-source/components/commit/9202b72bc5fb99eb3e1af7d9e56f3dc15b1df2a4))
11+
612
## [0.9.26]
713

814
### Changed

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"version": "0.9.29",
2+
"version": "0.10.0",
33
"command": {
44
"version": {
55
"conventionalCommits": true

packages/components-providers/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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+
# [0.10.0](https://github.com/looker-open-source/components/compare/v0.9.29...v0.10.0) (2021-01-19)
7+
8+
9+
### Bug Fixes
10+
11+
* Properly configure build for tree-shaking support ([9202b72](https://github.com/looker-open-source/components/commit/9202b72bc5fb99eb3e1af7d9e56f3dc15b1df2a4))
12+
13+
14+
15+
16+
617
## [0.9.26]
718

819
### Added

packages/components-providers/package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
{
22
"name": "@looker/components-providers",
33
"license": "MIT",
4-
"version": "0.9.29",
4+
"version": "0.10.0",
55
"main": "cjs/index.js",
66
"module": "esm/index.js",
77
"types": "types/index.d.ts",
88
"files": [
9-
"cjs", "esm", "types"
9+
"cjs",
10+
"esm",
11+
"types"
1012
],
1113
"sideEffects": false,
1214
"repository": {
@@ -18,7 +20,7 @@
1820
"access": "public"
1921
},
2022
"dependencies": {
21-
"@looker/design-tokens": "^0.9.27",
23+
"@looker/design-tokens": "^0.10.0",
2224
"lodash": "^4.17.20",
2325
"tabbable": "^5.1.4"
2426
},

packages/components-test-utils/CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,17 @@
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+
# [0.10.0](https://github.com/looker-open-source/components/compare/v0.9.29...v0.10.0) (2021-01-19)
7+
8+
9+
### Bug Fixes
10+
11+
* Properly configure build for tree-shaking support ([9202b72](https://github.com/looker-open-source/components/commit/9202b72bc5fb99eb3e1af7d9e56f3dc15b1df2a4))
12+
13+
14+
15+
16+
617
## [0.9.15]
718

819
### Changed

packages/components-test-utils/package.json

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
{
22
"name": "@looker/components-test-utils",
33
"license": "MIT",
4-
"version": "0.9.29",
4+
"version": "0.10.0",
55
"main": "cjs/index.js",
66
"module": "esm/index.js",
77
"types": "types/index.d.ts",
88
"files": [
9-
"cjs", "esm", "types"
9+
"cjs",
10+
"esm",
11+
"types"
1012
],
1113
"sideEffects": false,
1214
"repository": {
@@ -18,7 +20,7 @@
1820
"access": "public"
1921
},
2022
"devDependencies": {
21-
"@looker/components-providers": "^0.9.29",
23+
"@looker/components-providers": "^0.10.0",
2224
"@testing-library/react": "^11.2.2",
2325
"@types/enzyme": "^3.10.8",
2426
"@types/jest": "^26.0.19",

packages/components-theme-editor/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
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+
# [0.10.0](https://github.com/looker-open-source/components/compare/v0.9.29...v0.10.0) (2021-01-19)
7+
8+
9+
### Bug Fixes
10+
11+
* Correct import path issues DialogLayout interface name conflict ([88f099e](https://github.com/looker-open-source/components/commit/88f099eacf361a83be9149e0ac541b9184d03547))
12+
* Properly configure build for tree-shaking support ([9202b72](https://github.com/looker-open-source/components/commit/9202b72bc5fb99eb3e1af7d9e56f3dc15b1df2a4))
13+
14+
15+
16+
17+
618
## [0.9.16]
719

820
### Preview / Experimental

0 commit comments

Comments
 (0)