Skip to content

Commit

Permalink
CHORE: prep for 1.3.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mplanchard committed Feb 21, 2020
1 parent ac20009 commit 89f6264
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion 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.3.1] - 2020-02-21

### Fixed

- Fix pylint `assignment-from-no-return` warnings for methods that can only
Expand Down Expand Up @@ -72,7 +74,8 @@ 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.3.0...HEAD
[Unreleased]: https://github.com/mplanchard/safetywrap/compare/v1.3.1...HEAD
[1.3.1]: https://github.com/mplanchard/safetywrap/compare/v1.3.0...v1.3.1
[1.3.0]: https://github.com/mplanchard/safetywrap/compare/v1.2.0...v1.3.0
[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
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.3.0"
__version__ = "1.3.1"
__version_info__ = tuple(map(int, __version__.split(".")))


Expand Down

0 comments on commit 89f6264

Please sign in to comment.