From e17bb9d64475a9685957e36b2a7ebdde72cbb962 Mon Sep 17 00:00:00 2001 From: Nikita Tikhonov Date: Wed, 17 Aug 2022 18:27:22 +0300 Subject: [PATCH] Prepare the next release. --- CHANGELOG.md | 7 +++++++ README.md | 2 +- iters/__init__.py | 2 +- pyproject.toml | 4 ++-- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1324861..3df2b72 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ +## 0.3.0 (2022-08-17) + +### Changes + +- Change functions of various arity returning `Awaitable[T]` to async functions returning `T`. + ([#15](https://github.com/nekitdev/iters/pull/15)) + ## 0.2.0 (2022-08-15) ### Changes diff --git a/README.md b/README.md index 171da62..2931a84 100644 --- a/README.md +++ b/README.md @@ -48,7 +48,7 @@ Or by directly specifying it in the configuration like so: ```toml [tool.poetry.dependencies] -iters = "^0.2.0" +iters = "^0.3.0" ``` Alternatively, you can add it directly from the source: diff --git a/iters/__init__.py b/iters/__init__.py index b5dc6e6..ecde959 100644 --- a/iters/__init__.py +++ b/iters/__init__.py @@ -6,7 +6,7 @@ __title__ = "iters" __author__ = "nekitdev" __license__ = "MIT" -__version__ = "0.2.0" +__version__ = "0.3.0" from iters.async_iters import ( AsyncIter, diff --git a/pyproject.toml b/pyproject.toml index 658d5ce..0464aa9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "iters" -version = "0.2.0" +version = "0.3.0" description = "Composable external iteration." authors = ["nekitdev"] license = "MIT" @@ -131,7 +131,7 @@ warn_unused_ignores = false # compatibility [tool.changelogging] name = "iters" -version = "0.2.0" +version = "0.3.0" url = "https://github.com/nekitdev/iters" directory = "changes" output = "CHANGELOG.md"