Skip to content

Commit 289aa76

Browse files
committed
changelog and workflow
1 parent 471dd00 commit 289aa76

File tree

4 files changed

+64
-1
lines changed

4 files changed

+64
-1
lines changed

.github/workflows/v1-release.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Release
2+
on:
3+
release:
4+
types:
5+
- published
6+
workflow_dispatch:
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v2
13+
- uses: actions/setup-node@v1
14+
with:
15+
node-version: 14
16+
registry-url: https://registry.npmjs.org/
17+
18+
- name: Install npm dependencies
19+
run: npm i
20+
21+
- name: Update version number for telemetry
22+
run: npm run versionUpdater
23+
24+
- name: Create/update the missing localization keys
25+
run: npm run localization
26+
27+
- name: Run build
28+
run: npm run build
29+
30+
- name: Publish release
31+
run: npm publish
32+
env:
33+
NODE_AUTH_TOKEN: ${{secrets.NPM_PUBLISH_TOKEN}}

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Releases
22

3+
## 1.21.2
4+
5+
### Enhancements
6+
7+
- `ComboBoxListItemPicker` and `ListItemPicker`: Add label to control [#909](https://github.com/pnp/sp-dev-fx-controls-react/pull/909)
8+
- `Taxonomy picker` - useSessionStorage property integration [#998](https://github.com/pnp/sp-dev-fx-controls-react/issues/998)
9+
10+
### Fixes
11+
12+
- `TaxonomyPicker`: suggestions language is always English [#879](https://github.com/pnp/sp-dev-fx-controls-react/issues/879)
13+
14+
### Contributors
15+
16+
Special thanks to our contributors (in alphabetical order): [Emmanuel Sapet](https://github.com/Whiteshark57), [Peter Paul Kirschner](https://github.com/petkir).
17+
318
## 1.21.1
419

520
### Enhancements

docs/documentation/docs/about/release-notes.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Releases
22

3+
## 1.21.2
4+
5+
### Enhancements
6+
7+
- `ComboBoxListItemPicker` and `ListItemPicker`: Add label to control [#909](https://github.com/pnp/sp-dev-fx-controls-react/pull/909)
8+
- `Taxonomy picker` - useSessionStorage property integration [#998](https://github.com/pnp/sp-dev-fx-controls-react/issues/998)
9+
10+
### Fixes
11+
12+
- `TaxonomyPicker`: suggestions language is always English [#879](https://github.com/pnp/sp-dev-fx-controls-react/issues/879)
13+
14+
### Contributors
15+
16+
Special thanks to our contributors (in alphabetical order): [Emmanuel Sapet](https://github.com/Whiteshark57), [Peter Paul Kirschner](https://github.com/petkir).
17+
318
## 1.21.1
419

520
### Enhancements

src/common/telemetry/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
export const version: string = "1.21.1";
1+
export const version: string = "1.21.2";

0 commit comments

Comments
 (0)