-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
95 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
# kitconcept's volto-button-block Release Notes | ||
|
||
<!-- You should *NOT* be adding new change log entries to this file. | ||
You should create a file in the news directory instead. | ||
For helpful instructions, please see: | ||
https://6.docs.plone.org/volto/developer-guidelines/contributing.html#create-a-pull-request | ||
--> | ||
|
||
<!-- towncrier release notes start --> | ||
|
||
## 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 |