From 5ada338ab77763396ab9e0844ffcb820a5999352 Mon Sep 17 00:00:00 2001 From: francium Date: Mon, 4 Dec 2023 22:15:31 -0500 Subject: [PATCH] Release v0.15.0 --- CHANGELOG.md | 5 ++++- src/result/__init__.py | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0318db0..cc4314e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,8 @@ Possible log types: ## [Unreleased] +## [0.15.0] - 2023-12-04 + - `[added]` Add `do` function to support Haskell-style do-notation (#149) ## [0.14.0] - 2023-11-10 @@ -130,7 +132,8 @@ codebase. - Initial version [MIGRATING.md]: https://github.com/rustedpy/result/blob/master/MIGRATING.md -[Unreleased]: https://github.com/rustedpy/result/compare/v0.14.0...HEAD +[Unreleased]: https://github.com/rustedpy/result/compare/v0.15.0...HEAD +[0.15.0]: https://github.com/rustedpy/result/compare/v0.14.0...v0.15.0 [0.14.0]: https://github.com/rustedpy/result/compare/v0.13.1...v0.14.0 [0.13.1]: https://github.com/rustedpy/result/compare/v0.13.0...v0.13.1 [0.13.0]: https://github.com/rustedpy/result/compare/v0.12.0...v0.13.0 diff --git a/src/result/__init__.py b/src/result/__init__.py index 277717a..94e60b8 100644 --- a/src/result/__init__.py +++ b/src/result/__init__.py @@ -23,4 +23,4 @@ "is_err", "do", ] -__version__ = "0.15.0.dev0" +__version__ = "0.15.0"