From f908d3cdb73f89e80e572cb4be3af9274e6fe80c Mon Sep 17 00:00:00 2001 From: samypr100 <3933065+samypr100@users.noreply.github.com> Date: Sun, 17 Dec 2023 01:28:05 -0500 Subject: [PATCH] chore: prep for 1.0.1 release --- CHANGELOG.md | 4 ++++ pyproject.toml | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 08adcb1..d2b174f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# 1.0.1 + +* `requires-python` metadata is now properly set to ">=3.8,<3.11" + # 1.0.0 * Initial Reference Implementation diff --git a/pyproject.toml b/pyproject.toml index 8a1f3e2..0018042 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "backports.asyncio.runner" -version = "1.0.0" +version = "1.0.1" description = "Backport of asyncio.Runner, a context manager that controls event loop life cycle." license = { text = "PSF-2.0" } requires-python = ">=3.8,<3.11"