Skip to content

Commit

Permalink
Release 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sneridagh committed Jun 11, 2024
1 parent c4a6bc5 commit 6353783
Show file tree
Hide file tree
Showing 9 changed files with 51 additions and 18 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,28 @@

<!-- towncrier release notes start -->

## 3.0.0 (2024-06-11)

### Breaking

- Compatible with the Block Model v3, via the `blockModel` opt-in flag. @sneridagh

** Deprecation notice **:
During the 3.x series of this add-on, the flag will be opt-in.
From 4.x onwards, the model v3 will be the default for this add-on and the flag will be removed (no opt-out).

The 3.x series will be the last to support tge SemanticUI button component.
The 4.x version will support `@plone/components` `Button` component only. [#20](https://github.com/kitconcept/volto-button-block/pull/20)

### Feature

- Add Spanish translations @macagua [#13](https://github.com/kitconcept/volto-button-block/pull/13)
- Use docker-less and project-less approach for developing @sneridagh [#17](https://github.com/kitconcept/volto-button-block/pull/17)

### Internal

- Improve project-less setup @sneridagh [#18](https://github.com/kitconcept/volto-button-block/pull/18)

## 2.3.1 (2023-07-21)

### Bugfix
Expand Down
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kitconcept/volto-button-block-dev",
"version": "2.3.1",
"version": "3.0.0",
"description": "volto-button-block: Volto add-on that provides a configurable button as a block.",
"main": "src/index.js",
"license": "MIT",
Expand Down Expand Up @@ -30,9 +30,9 @@
"stylelint": "stylelint 'packages/**/src/**/*.{css,scss,less}' --allow-empty-input",
"stylelint:fix": "stylelint 'packages/**/src/**/*.{css,scss,less}' --fix --allow-empty-input",
"dry-release": "release-it --dry-run",
"release": "pnpm --filter @kitconcept/volto-button-block release-it",
"release-major-alpha": "pnpm --filter @kitconcept/volto-button-block release-it major --preRelease=alpha",
"release-alpha": "pnpm --filter @kitconcept/volto-button-block release-it --preRelease=alpha"
"release": "pnpm --filter @kitconcept/volto-button-block release",
"release-major-alpha": "pnpm --filter @kitconcept/volto-button-block release-major-alpha",
"release-alpha": "pnpm --filter @kitconcept/volto-button-block release-alpha"
},
"dependencies": {
"@plone/volto": "workspace:*",
Expand All @@ -43,4 +43,4 @@
"mrs-developer": "^2.2.0"
},
"packageManager": "[email protected]"
}
}
2 changes: 1 addition & 1 deletion packages/volto-button-block/.release-it.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"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)'",
"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"
Expand Down
22 changes: 22 additions & 0 deletions packages/volto-button-block/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,28 @@

<!-- towncrier release notes start -->

## 3.0.0 (2024-06-11)

### Breaking

- Compatible with the Block Model v3, via the `blockModel` opt-in flag. @sneridagh

** Deprecation notice **:
During the 3.x series of this add-on, the flag will be opt-in.
From 4.x onwards, the model v3 will be the default for this add-on and the flag will be removed (no opt-out).

The 3.x series will be the last to support tge SemanticUI button component.
The 4.x version will support `@plone/components` `Button` component only. [#20](https://github.com/kitconcept/volto-button-block/pull/20)

### Feature

- Add Spanish translations @macagua [#13](https://github.com/kitconcept/volto-button-block/pull/13)
- Use docker-less and project-less approach for developing @sneridagh [#17](https://github.com/kitconcept/volto-button-block/pull/17)

### Internal

- Improve project-less setup @sneridagh [#18](https://github.com/kitconcept/volto-button-block/pull/18)

## 2.3.1 (2023-07-21)

### Bugfix
Expand Down
1 change: 0 additions & 1 deletion packages/volto-button-block/news/13.feature

This file was deleted.

1 change: 0 additions & 1 deletion packages/volto-button-block/news/17.feature

This file was deleted.

1 change: 0 additions & 1 deletion packages/volto-button-block/news/18.internal

This file was deleted.

8 changes: 0 additions & 8 deletions packages/volto-button-block/news/20.breaking

This file was deleted.

2 changes: 1 addition & 1 deletion packages/volto-button-block/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@kitconcept/volto-button-block",
"version": "2.3.1",
"version": "3.0.0",
"description": "volto-button-block: Volto add-on that provides a configurable button as a block.",
"main": "src/index.js",
"license": "MIT",
Expand Down

0 comments on commit 6353783

Please sign in to comment.