From 89f6264c6c570295ed5362f6d99c21a4347174c4 Mon Sep 17 00:00:00 2001 From: Matthew Planchard Date: Fri, 21 Feb 2020 16:13:22 -0600 Subject: [PATCH] CHORE: prep for 1.3.1 release --- CHANGELOG.md | 5 ++++- src/safetywrap/__init__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ec22b8d..f16dad2 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.3.1] - 2020-02-21 + ### Fixed - Fix pylint `assignment-from-no-return` warnings for methods that can only @@ -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 diff --git a/src/safetywrap/__init__.py b/src/safetywrap/__init__.py index 8b5ac26..228f0ea 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.3.0" +__version__ = "1.3.1" __version_info__ = tuple(map(int, __version__.split(".")))