Skip to content

Commit ae360dd

Browse files
authored
release: 1.0.0-dev.4 (#41)
1 parent e737d39 commit ae360dd

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

CHANGELOG.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
1-
## [1.0.0-dev.3](https://github.com/flex-development/vite-plugin-react-docgen-typescript/compare/1.0.0-dev.2...1.0.0-dev.3) (2022-08-16)
1+
## [1.0.0-dev.4](https://github.com/flex-development/vite-plugin-react-docgen-typescript/compare/1.0.0-dev.3...1.0.0-dev.4) (2022-08-17)
2+
3+
4+
### :house_with_garden: Housekeeping
5+
6+
* **release:** update commit message format ([e737d39](https://github.com/flex-development/vite-plugin-react-docgen-typescript/commit/e737d39b34cf182c49f6f7b1da91e37aa98099e6))
7+
8+
## [1.0.0-dev.3](https://github.com/flex-development/vite-plugin-react-docgen-typescript/compare/1.0.0-dev.2...1.0.0-dev.3) (2022-08-15)
29

310

411
### :robot: Continuous Integration
512

613
* **workflows:** fix `ReferenceError: prereleased is not defined` ([2010f59](https://github.com/flex-development/vite-plugin-react-docgen-typescript/commit/2010f598b8fcc4f4ff5b83af0eb22be311f41cad))
714

8-
## [1.0.0-dev.2](https://github.com/flex-development/vite-plugin-react-docgen-typescript/compare/1.0.0-dev.1...1.0.0-dev.2) (2022-08-16)
15+
## [1.0.0-dev.2](https://github.com/flex-development/vite-plugin-react-docgen-typescript/compare/1.0.0-dev.1...1.0.0-dev.2) (2022-08-15)
916

1017

1118
### :robot: Continuous Integration

CONTRIBUTING.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -353,12 +353,12 @@ Before deploying, the following steps must be completed:
353353
4. `yarn conventional-changelog -i CHANGELOG.md -s`
354354
5. `yarn release`
355355
6. Open PR from `release/*` into `main`
356-
- PR title should match `release: <package.json#name>@<new-version>`
357-
- e.g: `release: @flex-development/vite-plugin-react-docgen-typescript@1.1.0`
356+
- PR title should match `release: <new-version>`
357+
- e.g: `release: 1.1.0`
358358
- link all issues being released
359359
- after review, `squash and merge` PR
360-
- `release: @flex-development/vite-plugin-react-docgen-typescript@<new-version> (#pull-request-n)`
361-
- e.g: `release: @flex-development/vite-plugin-react-docgen-typescript@1.1.0 (#3)`
360+
- `release: <new-version> (#pull-request-n)`
361+
- e.g: `release 1.1.0 (#3)`
362362
- on PR merge, [release workflow](.github/workflows/release.yml) will fire
363363
- if successful, the workflow will:
364364
- pack project

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@flex-development/vite-plugin-react-docgen-typescript",
33
"description": "A react-docgen-typescript plugin for Vite",
4-
"version": "1.0.0-dev.3",
4+
"version": "1.0.0-dev.4",
55
"keywords": [
66
"docgen",
77
"react",

scripts/release.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ VERSION=$(jq .version package.json -r)
1818
RELEASE_BRANCH=release/$VERSION
1919
git switch -c $RELEASE_BRANCH
2020
git add .
21-
git commit -s -m "release: $(jq .name package.json -r)@$VERSION" --no-verify
21+
git commit -s -m "release: $VERSION" --no-verify
2222
git push origin -u --no-verify $RELEASE_BRANCH
2323
yarn clean:pack

0 commit comments

Comments
 (0)