Skip to content

Commit

Permalink
REL: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
mplanchard committed Jan 3, 2020
1 parent b432b75 commit 1331f14
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions 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.1.0] - 2019-01-03

### Added

- `Result.collect(iterable: Iterable[T, E]) -> Result[Tuple[T, ...], E]` added
Expand Down Expand Up @@ -42,7 +44,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.0.2...HEAD
[1.0.0]: https://github.com/mplanchard/safetywrap/compare/f87fa5b1a00af5ef26213e576730039d87f7163b...v1.0.0
[1.0.1]: https://github.com/mplanchard/safetywrap/compare/v1.0.0...v1.0.1
[Unreleased]: https://github.com/mplanchard/safetywrap/compare/v1.1.0...HEAD
[1.1.0]: https://github.com/mplanchard/safetywrap/compare/v1.0.2...v1.1.0
[1.0.2]: https://github.com/mplanchard/safetywrap/compare/v1.0.1...v1.0.2
[1.0.1]: https://github.com/mplanchard/safetywrap/compare/v1.0.0...v1.0.1
[1.0.0]: https://github.com/mplanchard/safetywrap/compare/f87fa5b1a00af5ef26213e576730039d87f7163b...v1.0.0
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.0.2"
__version__ = "1.1.0"
__version_info__ = tuple(map(int, __version__.split(".")))


Expand Down

0 comments on commit 1331f14

Please sign in to comment.