Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 0.2.1 #5

Merged
merged 3 commits into from
Nov 23, 2022
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
2 changes: 1 addition & 1 deletion .release-it.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"npm": {
"publish": false
"publish": true
},
"git": {
"changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://github.com/raw/release-it/release-it/master/templates/changelog-compact.hbs",
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,22 @@ All notable changes to this project will be documented in this file. Dates are d

Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).

#### [0.2.1](https://github.com/collective/volto-sentry/compare/0.2.0...0.2.1)

- Fix usage with storybook [`#4`](https://github.com/collective/volto-sentry/pull/4)
- Release 0.2.0 [`#2`](https://github.com/collective/volto-sentry/pull/2)
- Fix docs about this add-on [`86fda93`](https://github.com/collective/volto-sentry/commit/86fda933414437c4d87045149c0f981a748ada75)
- Publish to npm [`17c46e8`](https://github.com/collective/volto-sentry/commit/17c46e8ee972ebc72542a44c81c11132cadd3c9c)

#### 0.2.0

> 16 November 2022

- (feat):The first working version of the addon [`#1`](https://github.com/collective/volto-sentry/pull/1)
- Add initial package structure [`f9f8015`](https://github.com/collective/volto-sentry/commit/f9f801501aa74d11b5ea9592a00a6c723e98f2f6)
- Port more stuff from volto [`4649b18`](https://github.com/collective/volto-sentry/commit/4649b18d4085143431bb8cd0b78d2ee46405101a)
- Release 0.1.0 [`504439a`](https://github.com/collective/volto-sentry/commit/504439a9cef21285ec6e09321268f9c479649ba2)
- Don't crash [`3a4e76e`](https://github.com/collective/volto-sentry/commit/3a4e76e5eab57a60f7e9212077990eccfc14a868)
- Release 0.2.0 [`024674f`](https://github.com/collective/volto-sentry/commit/024674fadf2f9e92084f9e17cf5166f358ea57b2)
- Initial release [`307bdbd`](https://github.com/collective/volto-sentry/commit/307bdbddcb5580b9f538a4469dd498a257470072)
- Add author / homepage [`df093c5`](https://github.com/collective/volto-sentry/commit/df093c56c6221f1dcdfa230f8c83338e23ab9b4c)
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@plone-collective/volto-sentry",
"version": "0.2.0",
"version": "0.2.1",
"description": "volto-sentry: Volto add-on",
"main": "src/index.js",
"author": "Plone Collective",
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,19 @@ This version requires `@plone/volto >= 16.0.0.alpha.45` (`sentry` removed from V

```json
"addons": [
"@collective/volto-sentry"
"@plone-collective/volto-sentry"
],

"dependencies": {
"@collective/volto-sentry": "*"
"@plone-collective/volto-sentry": "*"
}
```

1. If not, create one:

```
npm install -g yo @plone/generator-volto
yo @plone/volto my-volto-project --addon @collective/volto-sentry
yo @plone/volto my-volto-project --addon @plone-collective/volto-sentry
cd my-volto-project
```

Expand Down