Skip to content

Commit

Permalink
fix(publish): specify a conventional commit compliant lerna publish c…
Browse files Browse the repository at this point in the history
…ommit message
  • Loading branch information
sledorze committed Apr 7, 2021
1 parent 36ad1d1 commit 96d7c07
Show file tree
Hide file tree
Showing 5 changed files with 53 additions and 8 deletions.
17 changes: 12 additions & 5 deletions lerna.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
{
"packages": ["packages/*"],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "independent"
}
"packages": [
"packages/*"
],
"npmClient": "yarn",
"useWorkspaces": true,
"version": "independent",
"command": {
"version": {
"message": "chore(release): publish"
}
}
}
19 changes: 19 additions & 0 deletions packages/morphic-batteries/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.0.1-alpha.2](https://github.com/sledorze/morphic-ts/compare/@morphic-ts/[email protected]...@morphic-ts/[email protected]) (2021-04-07)


### Bug Fixes

* **publish:** specify a conventional commit compliant lerna publish commit message ([f242026](https://github.com/sledorze/morphic-ts/commit/f242026f7becb491016b81b5498c25293db386ff))





## [3.0.1-alpha.1](https://github.com/sledorze/morphic-ts/compare/@morphic-ts/[email protected]...@morphic-ts/[email protected]) (2021-04-07)

**Note:** Version bump only for package @morphic-ts/batteries





## [3.0.1-alpha.0](https://github.com/sledorze/morphic-ts/compare/@morphic-ts/[email protected]...@morphic-ts/[email protected]) (2021-04-07)

**Note:** Version bump only for package @morphic-ts/batteries
4 changes: 2 additions & 2 deletions packages/morphic-batteries/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@morphic-ts/batteries",
"version": "3.0.1-alpha.0",
"version": "3.0.1-alpha.2",
"description": "Morphic batteries package to bootstrap projects",
"author": "Stéphane Le Dorze <[email protected]>",
"homepage": "",
Expand Down Expand Up @@ -41,7 +41,7 @@
"@morphic-ts/algebras": "^3.0.0",
"@morphic-ts/common": "^3.0.0",
"@morphic-ts/eq-interpreters": "^3.0.0",
"@morphic-ts/fastcheck-interpreters": "^3.0.1-alpha.0",
"@morphic-ts/fastcheck-interpreters": "^3.0.1-alpha.2",
"@morphic-ts/io-ts-interpreters": "^3.0.0",
"@morphic-ts/json-schema-interpreters": "^3.0.0",
"@morphic-ts/model-algebras": "^3.0.0",
Expand Down
19 changes: 19 additions & 0 deletions packages/morphic-fastcheck-interpreters/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [3.0.1-alpha.2](https://github.com/sledorze/morphic-ts/compare/@morphic-ts/[email protected]...@morphic-ts/[email protected]) (2021-04-07)


### Bug Fixes

* **publish:** specify a conventional commit compliant lerna publish commit message ([f242026](https://github.com/sledorze/morphic-ts/commit/f242026f7becb491016b81b5498c25293db386ff))





## [3.0.1-alpha.1](https://github.com/sledorze/morphic-ts/compare/@morphic-ts/[email protected]...@morphic-ts/[email protected]) (2021-04-07)

**Note:** Version bump only for package @morphic-ts/fastcheck-interpreters





## [3.0.1-alpha.0](https://github.com/sledorze/morphic-ts/compare/@morphic-ts/[email protected]...@morphic-ts/[email protected]) (2021-04-07)

**Note:** Version bump only for package @morphic-ts/fastcheck-interpreters
2 changes: 1 addition & 1 deletion packages/morphic-fastcheck-interpreters/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@morphic-ts/fastcheck-interpreters",
"version": "3.0.1-alpha.0",
"version": "3.0.1-alpha.2",
"description": "Morphic fastcheck package for property based testing",
"author": "Stéphane Le Dorze <[email protected]>",
"homepage": "",
Expand Down

0 comments on commit 96d7c07

Please sign in to comment.