Skip to content

Commit

Permalink
CHORE: Prep for 1.4.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
mplanchard committed Mar 9, 2020
1 parent 9a4df03 commit 92a6f6f
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.4.0] - 2020-03-09

### Added

- New `Option.collect` constructor to create an `Option[Tuple[T, ...]]`
Expand Down Expand Up @@ -81,7 +83,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.1...HEAD
[Unreleased]: https://github.com/mplanchard/safetywrap/compare/v1.4.0...HEAD
[1.4.0]: https://github.com/mplanchard/safetywrap/compare/v1.3.1...v1.4.0
[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
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.1"
__version__ = "1.4.0"
__version_info__ = tuple(map(int, __version__.split(".")))


Expand Down

0 comments on commit 92a6f6f

Please sign in to comment.