diff --git a/CHANGELOG.md b/CHANGELOG.md index 5342a61..bd99e99 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,7 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] -## [1.0.1] - 2019-05-19 +## [1.0.2] - 2019-12-12 + +### Fixed + +- `Result.expect()` and `Result.expect_err()` now appends the stringified + `Err` or `Ok` result to the provided `msg`. + +## [1.0.1] - 2019-12-09 ### Fixed @@ -29,6 +36,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Basic benchmarks for analyzing performance - Apache license -[Unreleased]: https://github.com/mplanchard/safetywrap/compare/v1.0.0...HEAD +[Unreleased]: https://github.com/mplanchard/safetywrap/compare/v1.0.2...HEAD [1.0.0]: https://github.com/mplanchard/safetywrap/compare/f87fa5b1a00af5ef26213e576730039d87f7163b...v1.0.0 [1.0.1]: https://github.com/mplanchard/safetywrap/compare/v1.0.0...v1.0.1 +[1.0.2]: https://github.com/mplanchard/safetywrap/compare/v1.0.1...v1.0.2 diff --git a/src/safetywrap/__init__.py b/src/safetywrap/__init__.py index b7aa822..042b592 100644 --- a/src/safetywrap/__init__.py +++ b/src/safetywrap/__init__.py @@ -1,7 +1,7 @@ """Typesafe python versions of Rust-inspired result types.""" __all__ = ("Option", "Result", "Ok", "Err", "Some", "Nothing") -__version__ = "1.0.1" +__version__ = "1.0.2" __version_info__ = tuple(map(int, __version__.split(".")))