From 3a57befe84b584c7f08a9c9c5ea071c6e38be082 Mon Sep 17 00:00:00 2001 From: abersheeran Date: Wed, 7 Dec 2022 05:20:56 +0000 Subject: [PATCH] v0.10.0 --- pyproject.toml | 2 +- ratelimit/__version__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index afbaf92..eda01d7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "asgi-ratelimit" -version = "0.9.0" +version = "0.10.0" description = "" authors = ["abersheeran "] readme = "README.md" diff --git a/ratelimit/__version__.py b/ratelimit/__version__.py index 8162fb5..6c0877e 100644 --- a/ratelimit/__version__.py +++ b/ratelimit/__version__.py @@ -1,3 +1,3 @@ -VERSION = (0, 9, 0) +VERSION = (0, 10, 0) __version__ = ".".join(map(str, VERSION))