Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: <package.json#name>@<new-version>`
- e.g: `release: @flex-development/vite-plugin-react-docgen-typescript@1.1.0`
- PR title should match `release: <new-version>`
- 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@<new-version> (#pull-request-n)`
- e.g: `release: @flex-development/vite-plugin-react-docgen-typescript@1.1.0 (#3)`
- `release: <new-version> (#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
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion scripts/release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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