diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ddeb3c..54555a2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,8 @@ Possible log types: ## [Unreleased] +## [0.17.0] - 2024-06-02 + - `[added]` Add `inspect()` and `inspect_err()` methods (#185) ## [0.16.1] - 2024-02-29 @@ -144,7 +146,8 @@ codebase. - Initial version [MIGRATING.md]: https://github.com/rustedpy/result/blob/main/MIGRATING.md -[Unreleased]: https://github.com/rustedpy/result/compare/v0.16.1...HEAD +[Unreleased]: https://github.com/rustedpy/result/compare/v0.17.0...HEAD +[0.17.0]: https://github.com/rustedpy/result/compare/v0.16.1...v0.17.0 [0.16.1]: https://github.com/rustedpy/result/compare/v0.16.0...v0.16.1 [0.16.0]: https://github.com/rustedpy/result/compare/v0.15.0...v0.16.0 [0.15.0]: https://github.com/rustedpy/result/compare/v0.14.0...v0.15.0 diff --git a/src/result/__init__.py b/src/result/__init__.py index e336528..470dc0c 100644 --- a/src/result/__init__.py +++ b/src/result/__init__.py @@ -25,4 +25,4 @@ "do", "do_async", ] -__version__ = "0.17.0.dev0" +__version__ = "0.17.0"