diff --git a/CHANGELOG.md b/CHANGELOG.md index c6d50fc..1b32483 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.2.0] - 2019-01-09 + ### Added - `Result.raise_if_err(self, msg: str, exc_cls: t.Type[Exception] = RuntimeError) -> T` @@ -52,6 +54,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Apache license [Unreleased]: https://github.com/mplanchard/safetywrap/compare/v1.1.0...HEAD +[1.2.0]: https://github.com/mplanchard/safetywrap/compare/v1.1.0...v1.2.0 [1.1.0]: https://github.com/mplanchard/safetywrap/compare/v1.0.2...v1.1.0 [1.0.2]: https://github.com/mplanchard/safetywrap/compare/v1.0.1...v1.0.2 [1.0.1]: https://github.com/mplanchard/safetywrap/compare/v1.0.0...v1.0.1 diff --git a/src/safetywrap/__init__.py b/src/safetywrap/__init__.py index 24b0a53..a3ffac2 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.1.0" +__version__ = "1.2.0" __version_info__ = tuple(map(int, __version__.split(".")))