diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ebf3eb..891d770 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -14,6 +14,14 @@ +## Aiolimiter 1.0.0 (2021-10-15) + +### Bugfixes + +- Avoid warnings on Python 3.8 and up by not passing in the loop to + ``asyncio.wait_for()``. ([#46](https://github.com/mjpieters/aiolimiter/issues/46)) + + ## Aiolimiter 1.0.0b1 (2019-12-01) ### Improved Documentation diff --git a/changelog.d/46.bugfix b/changelog.d/46.bugfix deleted file mode 100644 index ad1ef0c..0000000 --- a/changelog.d/46.bugfix +++ /dev/null @@ -1,2 +0,0 @@ -Avoid warnings on Python 3.8 and up by not passing in the loop to -``asyncio.wait_for()``. diff --git a/changelog.d/towncrier_template.md b/changelog.d/towncrier_template.md index 30a7d37..99c4fb9 100644 --- a/changelog.d/towncrier_template.md +++ b/changelog.d/towncrier_template.md @@ -3,8 +3,10 @@ {% if section %}## {{section}} {% endif %} + {% if sections[section] %} {% for category, val in definitions.items() if category in sections[section]%} + ### {{ definitions[category]['name'] }} {% if definitions[category]['showcontent'] %} diff --git a/pyproject.toml b/pyproject.toml index c90edc5..6007efd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "aiolimiter" -version = "1.0.0-beta.1" +version = "1.0.0" description = "asyncio rate limiter, a leaky bucket implementation" license = "MIT" authors = ["Martijn Pieters "]