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 Oct 8, 2022
1 parent 6d22e08 commit 48689bb
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,15 @@

<!-- changelogging: start -->

## 0.4.0 (2022-10-08)

### Changes

- The following functions have been changed:
- `async_iter` is now an alias of `AsyncIter`;
- `iter` is now an alias of `Iter`;
- `reversed` is now an alias of `iter.reversed`.

## 0.3.0 (2022-08-17)

### 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.3.0"
iters = "^0.4.0"
```

Alternatively, you can add it directly from the source:
Expand Down
9 changes: 7 additions & 2 deletions iters/__init__.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
"""Composable external iteration."""
"""Composable external iteration.
If you have found yourself with a *collection* of some kind, and needed to perform
an operation on the elements of said collection, you will quickly run into *iterators*.
Iterators are heavily used in idiomatic Python code, so becoming familiar with them is essential.
"""

__description__ = "Composable external iteration."
__url__ = "https://github.com/nekitdev/iters"

__title__ = "iters"
__author__ = "nekitdev"
__license__ = "MIT"
__version__ = "0.3.0"
__version__ = "0.4.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.3.0"
version = "0.4.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.3.0"
version = "0.4.0"
url = "https://github.com/nekitdev/iters"
directory = "changes"
output = "CHANGELOG.md"
Expand Down

0 comments on commit 48689bb

Please sign in to comment.