Skip to content

Commit

Permalink
REL: v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mplanchard committed Jan 9, 2020
1 parent dd94120 commit e0f5cf8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/safetywrap/__init__.py
Original file line number Diff line number Diff line change
@@ -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(".")))


Expand Down

0 comments on commit e0f5cf8

Please sign in to comment.