Skip to content

Commit

Permalink
Prepare the next release.
Browse files Browse the repository at this point in the history
  • Loading branch information
nekitdev committed Aug 17, 2022
1 parent 1e74224 commit e17bb9d
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

<!-- changelogging: start -->

## 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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion iters/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
__title__ = "iters"
__author__ = "nekitdev"
__license__ = "MIT"
__version__ = "0.2.0"
__version__ = "0.3.0"

from iters.async_iters import (
AsyncIter,
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "iters"
version = "0.2.0"
version = "0.3.0"
description = "Composable external iteration."
authors = ["nekitdev"]
license = "MIT"
Expand Down Expand Up @@ -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"
Expand Down

0 comments on commit e17bb9d

Please sign in to comment.