Skip to content

Commit

Permalink
chore: update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
simbleau committed Aug 15, 2024
1 parent 9274007 commit 8aaf5f4
Showing 1 changed file with 42 additions and 8 deletions.
50 changes: 42 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,23 +10,57 @@ Subheadings to categorize changes are `added, changed, deprecated, removed, fixe

## Unreleased

## 0.2.0
This release has an [MSRV][] of 1.75.

### added
## [0.3.0] - 2024/08/15

This release has an [MSRV][] of 1.75.

### Added

- `set_hook_with` now takes an additional argument, `on_panic_callback` which is triggered automatically on panic. ([#3] by [@simbleau])

### Fixed

- If a panic occurs after the first panic (which can happen in multi-threaded apps, e.g. Bevy games), it will only be logged to stdout. Hence, only the first panic that occurred is preserved. ([#3] by [@simbleau])

## [0.2.0] - 2024/04/15

This release has an [MSRV][] of 1.75.

### Added

- `FORM_TEXTAREA_ID` is now public, which has the element ID of the stack trace text area.
- `FORM_SUBMIT_ID` is now public, which has the element ID of the submit button.

### changed
### Changed

- `set_hook_with` now takes the additional argument of an HTML form structure. The previous, default form can still be used with `web_panic_report::set_default_hook_with`, however requires the new (default) cargo feature: `default-form`. ([#2] by [@simbleau])

- `set_hook_with` now takes the additional argument of an HTML form structure. The previous, default form can still be used with `web_panic_report::set_default_hook_with`, however requires the new (default) cargo feature: `default-form`.
## [0.1.1] - 2024/03/17

## 0.1.1
This release has an [MSRV][] of 1.75.

### changed
### Fixed

- Any patch version of `web-sys` or `wasm-bindgen` can now be used.

## 0.1.0
## [0.1.0] - 2024/03/17

This release has an [MSRV][] of 1.75.

- Initialize release ([@Vrixyz] and [@simbleau])

[@simbleau]: https://github.com/simbleau
[@Vrixyz]: https://github.com/Vrixyz

[#2]: https://github.com/loopystudios/web_panic_report/pull/2
[#3]: https://github.com/loopystudios/web_panic_report/pull/3

[Unreleased]: https://github.com/loopystudios/web_panic_report/compare/v0.3.0...HEAD
[0.3.0]: https://github.com/loopystudios/web_panic_report/compare/v0.2.0...v0.3.0
[0.2.0]: https://github.com/loopystudios/web_panic_report/compare/v0.1.1...v0.2.0
[0.1.1]: https://github.com/loopystudios/web_panic_report/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/loopystudios/web_panic_report/releases/tag/v0.1.0

- Initialize release
[MSRV]: README.md#minimum-supported-rust-version-msrv

0 comments on commit 8aaf5f4

Please sign in to comment.