From 7a55f33eae478eb57c4a3ce8301ad34aae37879f Mon Sep 17 00:00:00 2001 From: abersheeran Date: Wed, 7 Jul 2021 09:35:08 +0800 Subject: [PATCH] v0.6.0 --- pyproject.toml | 2 +- ratelimit/__version__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 5c6b9f0..d013893 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "asgi-ratelimit" -version = "0.5.1" +version = "0.6.0" description = "" authors = ["abersheeran "] readme = "README.md" diff --git a/ratelimit/__version__.py b/ratelimit/__version__.py index f2e4c18..30aec59 100644 --- a/ratelimit/__version__.py +++ b/ratelimit/__version__.py @@ -1,3 +1,3 @@ -VERSION = (0, 5, 1) +VERSION = (0, 6, 0) __version__ = ".".join(map(str, VERSION))