Skip to content

Commit 1331f14

Browse files
committed
REL: bump version
1 parent b432b75 commit 1331f14

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

CHANGELOG.md

Lines changed: 6 additions & 3 deletions
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.1.0] - 2019-01-03
11+
1012
### Added
1113

1214
- `Result.collect(iterable: Iterable[T, E]) -> Result[Tuple[T, ...], E]` added
@@ -42,7 +44,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
4244
- Basic benchmarks for analyzing performance
4345
- Apache license
4446

45-
[Unreleased]: https://github.com/mplanchard/safetywrap/compare/v1.0.2...HEAD
46-
[1.0.0]: https://github.com/mplanchard/safetywrap/compare/f87fa5b1a00af5ef26213e576730039d87f7163b...v1.0.0
47-
[1.0.1]: https://github.com/mplanchard/safetywrap/compare/v1.0.0...v1.0.1
47+
[Unreleased]: https://github.com/mplanchard/safetywrap/compare/v1.1.0...HEAD
48+
[1.1.0]: https://github.com/mplanchard/safetywrap/compare/v1.0.2...v1.1.0
4849
[1.0.2]: https://github.com/mplanchard/safetywrap/compare/v1.0.1...v1.0.2
50+
[1.0.1]: https://github.com/mplanchard/safetywrap/compare/v1.0.0...v1.0.1
51+
[1.0.0]: https://github.com/mplanchard/safetywrap/compare/f87fa5b1a00af5ef26213e576730039d87f7163b...v1.0.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.0.2"
4+
__version__ = "1.1.0"
55
__version_info__ = tuple(map(int, __version__.split(".")))
66

77

0 commit comments

Comments
 (0)