From 12aeb0867365bc8d78107a05c7c3a51745351aeb Mon Sep 17 00:00:00 2001 From: Lexus Drumgold Date: Wed, 17 Aug 2022 22:14:19 -0400 Subject: [PATCH] release: 1.0.0-dev.4 Signed-off-by: Lexus Drumgold --- CHANGELOG.md | 11 +++++++++-- CONTRIBUTING.md | 8 ++++---- package.json | 2 +- scripts/release.sh | 2 +- 4 files changed, 15 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d2f8ae..93b7592 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,11 +1,18 @@ -## [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.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) + + +### :house_with_garden: Housekeeping + +* **release:** update commit message format ([e737d39](https://github.com/flex-development/vite-plugin-react-docgen-typescript/commit/e737d39b34cf182c49f6f7b1da91e37aa98099e6)) + +## [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) ### :robot: Continuous Integration * **workflows:** fix `ReferenceError: prereleased is not defined` ([2010f59](https://github.com/flex-development/vite-plugin-react-docgen-typescript/commit/2010f598b8fcc4f4ff5b83af0eb22be311f41cad)) -## [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) +## [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) ### :robot: Continuous Integration diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 94600a5..021733f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -353,12 +353,12 @@ Before deploying, the following steps must be completed: 4. `yarn conventional-changelog -i CHANGELOG.md -s` 5. `yarn release` 6. Open PR from `release/*` into `main` - - PR title should match `release: @` - - e.g: `release: @flex-development/vite-plugin-react-docgen-typescript@1.1.0` + - PR title should match `release: ` + - e.g: `release: 1.1.0` - link all issues being released - after review, `squash and merge` PR - - `release: @flex-development/vite-plugin-react-docgen-typescript@ (#pull-request-n)` - - e.g: `release: @flex-development/vite-plugin-react-docgen-typescript@1.1.0 (#3)` + - `release: (#pull-request-n)` + - e.g: `release 1.1.0 (#3)` - on PR merge, [release workflow](.github/workflows/release.yml) will fire - if successful, the workflow will: - pack project diff --git a/package.json b/package.json index e4ed287..f4d7457 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "@flex-development/vite-plugin-react-docgen-typescript", "description": "A react-docgen-typescript plugin for Vite", - "version": "1.0.0-dev.3", + "version": "1.0.0-dev.4", "keywords": [ "docgen", "react", diff --git a/scripts/release.sh b/scripts/release.sh index f99caa2..a377ff9 100644 --- a/scripts/release.sh +++ b/scripts/release.sh @@ -18,6 +18,6 @@ VERSION=$(jq .version package.json -r) RELEASE_BRANCH=release/$VERSION git switch -c $RELEASE_BRANCH git add . -git commit -s -m "release: $(jq .name package.json -r)@$VERSION" --no-verify +git commit -s -m "release: $VERSION" --no-verify git push origin -u --no-verify $RELEASE_BRANCH yarn clean:pack