diff --git a/package.json b/package.json index 83d80f8..38d12e0 100644 --- a/package.json +++ b/package.json @@ -17,9 +17,9 @@ }, "scripts": { "preinstall": "npx only-allow pnpm", - "start": "pnpm build:deps && VOLTOCONFIG=$(pwd)/volto.config.js pnpm --filter @plone/volto start", + "start": "VOLTOCONFIG=$(pwd)/volto.config.js pnpm --filter @plone/volto start", "start:prod": "pnpm --filter @plone/volto start:prod", - "build": "pnpm build:deps && VOLTOCONFIG=$(pwd)/volto.config.js pnpm --filter @plone/volto build", + "build": "VOLTOCONFIG=$(pwd)/volto.config.js pnpm --filter @plone/volto build", "build:deps": "pnpm --filter @plone/registry --filter @plone/components build", "i18n": "pnpm --filter addons i18n", "test": "RAZZLE_JEST_CONFIG=$(pwd)/jest-addon.config.js pnpm --filter @plone/volto test -- --passWithNoTests", diff --git a/packages/volto-button-block/.release-it.json b/packages/volto-button-block/.release-it.json new file mode 100644 index 0000000..f1b6bdb --- /dev/null +++ b/packages/volto-button-block/.release-it.json @@ -0,0 +1,25 @@ +{ + "hooks": { + "after:bump": [ + "pipx run towncrier build --draft --yes --version ${version} > .changelog.draft", + "pipx run towncrier build --yes --version ${version}", + "cp ../../README.md ./ && cp CHANGELOG.md ../../CHANGELOG.md", + "python3 -c 'import json; data = json.load(open(\"../../package.json\")); data[\"version\"] = ${version}; json.dump(data, open(\"../../package.json\", \"w\"), indent=2)'", + "git add ../../CHANGELOG.md ../../package.json" + ], + "after:release": "rm .changelog.draft README.md" + }, + "git": { + "changelog": "pipx run towncrier build --draft --yes --version 0.0.0", + "requireUpstream": false, + "requireCleanWorkingDir": false, + "commitMessage": "Release ${version}", + "tagName": "${version}", + "tagAnnotation": "Release ${version}" + }, + "github": { + "release": true, + "releaseName": "${version}", + "releaseNotes": "cat .changelog.draft" + } +} diff --git a/packages/volto-button-block/CHANGELOG.md b/packages/volto-button-block/CHANGELOG.md new file mode 100644 index 0000000..a2f5691 --- /dev/null +++ b/packages/volto-button-block/CHANGELOG.md @@ -0,0 +1,68 @@ +# kitconcept's volto-button-block Release Notes + + + + + +## 2.3.1 (2023-07-21) + +### Bugfix + +- Fix DE translation of Inner Alignment @iRohitSingh. [#1](https://github.com/kitconcept/volto-export/pull/1) +- Add missing translation. @danalvrz [#12](https://github.com/kitconcept/volto-export/pull/12) + + +## 2.3.0 (2023-06-23) + +### Feature + +- Add new Feature Button opens in new window @iRohitSingh [#9](https://github.com/kitconcept/volto-export/pull/9) + + +## 2.2.0 (2023-06-06) + +### Feature + +- Add Brazilian Portuguese translation. @ericof [#7](https://github.com/kitconcept/volto-export/pull/7) + + +## 2.1.0 (2023-03-20) + +### Feature + +- Remove 'block' suffix @danalvrz [#5](https://github.com/kitconcept/volto-export/pull/5) +- Add dockerized testbed support @sneridagh [#6](https://github.com/kitconcept/volto-export/pull/6) + + +## 2.0.0 (2022-06-09) + +### Breaking + +- Fix CSS and block name now is `__button` to avoid semanticUI CSS clashes @sneridagh +- Rename widget internally @sneridagh + +## 1.1.0 (2022-06-07) + +### Feature + +- Making it to incorporate the new style wrapper @iFlameing + +## 1.0.0 (2022-04-22) + +### Feature + +- Real initial release @sneridagh + +## 1.0.0-alpha.0 (2022-04-21) + +### Feature + +- Initial release @sneridagh @tisto + +### Internal + +- Added github workflows @robgietema