Skip to content

Commit

Permalink
Release 0.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake-Shadle committed May 20, 2022
1 parent 95dc1e1 commit d4e50a3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

<!-- next-header -->
## [Unreleased] - ReleaseDate
## [0.3.1] - 2022-05-20
### Changed
- [PR#14](https://github.com/EmbarkStudios/sentry-contrib-rust/pull/14) updated `sentry-core` to 0.26.0. Thanks [@poliorcetics](https://github.com/poliorcetics)!

Expand All @@ -27,7 +28,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Initial implementation

<!-- next-url -->
[Unreleased]: https://github.com/EmbarkStudios/sentry-contrib-rust/compare/0.3.0...HEAD
[Unreleased]: https://github.com/EmbarkStudios/sentry-contrib-rust/compare/0.3.1...HEAD
[0.3.1]: https://github.com/EmbarkStudios/sentry-contrib-rust/compare/0.3.0...0.3.1
[0.3.0]: https://github.com/EmbarkStudios/sentry-contrib-rust/compare/0.2.0...0.3.0
[0.2.0]: https://github.com/EmbarkStudios/sentry-contrib-rust/compare/0.1.0...0.2.0
[0.1.0]: https://github.com/EmbarkStudios/sentry-contrib-rust/releases/tag/0.1.0
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "sentry-contrib-breakpad"
description = "Unopinionated crash collection for Sentry reporting purposes"
repository = "https://github.com/EmbarkStudios/sentry-contrib-rust"
version = "0.3.0"
version = "0.3.1"
authors = ["Embark <opensource@embark-studios.com>"]
edition = "2018"
license = "MIT OR Apache-2.0"
Expand Down

3 comments on commit d4e50a3

@MarijnS95
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@Jake-Shadle Since sentry-core (and perhaps other bits) are part of the public API, and did a breaking bump from 0.25 to 0.26, I think sentry-contrib-breakpad should also perform a breaking change. Currently, without lockfile this update is not semver-compatible:

    |
218 |             hub,
    |             ^^^ expected struct `sentry_core::hub::Hub`, found struct `Hub`
    |
    = note: expected struct `Arc<sentry_core::hub::Hub>`
               found struct `Arc<Hub>`
    = note: perhaps two different versions of crate `sentry_core` are being used?

@Jake-Shadle
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@MarijnS95
Copy link
Contributor

@MarijnS95 MarijnS95 commented on d4e50a3 May 26, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks @Jake-Shadle! I presume 0.3.1 still has to be yanked from crates.io though, to prevent conflicts on crates that haven't yet done an explicit bump.

Please sign in to comment.