Skip to content

Commit 92a6f6f

Browse files
committed
CHORE: Prep for 1.4.0 release
1 parent 9a4df03 commit 92a6f6f

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.4.0] - 2020-03-09
11+
1012
### Added
1113

1214
- New `Option.collect` constructor to create an `Option[Tuple[T, ...]]`
@@ -81,7 +83,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8183
- Basic benchmarks for analyzing performance
8284
- Apache license
8385

84-
[Unreleased]: https://github.com/mplanchard/safetywrap/compare/v1.3.1...HEAD
86+
[Unreleased]: https://github.com/mplanchard/safetywrap/compare/v1.4.0...HEAD
87+
[1.4.0]: https://github.com/mplanchard/safetywrap/compare/v1.3.1...v1.4.0
8588
[1.3.1]: https://github.com/mplanchard/safetywrap/compare/v1.3.0...v1.3.1
8689
[1.3.0]: https://github.com/mplanchard/safetywrap/compare/v1.2.0...v1.3.0
8790
[1.2.0]: https://github.com/mplanchard/safetywrap/compare/v1.1.0...v1.2.0

src/safetywrap/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""Typesafe python versions of Rust-inspired result types."""
22

33
__all__ = ("Option", "Result", "Ok", "Err", "Some", "Nothing")
4-
__version__ = "1.3.1"
4+
__version__ = "1.4.0"
55
__version_info__ = tuple(map(int, __version__.split(".")))
66

77

0 commit comments

Comments
 (0)