From aa6dcc37f6652acb375d8ccf789c05fd1550307a Mon Sep 17 00:00:00 2001 From: burak-upstash Date: Mon, 17 Jul 2023 13:56:26 +0300 Subject: [PATCH] bump version to 0.5.1 --- pyproject.toml | 2 +- upstash_ratelimit/__init__.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index a5d5d37..26c7fb5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "upstash-ratelimit" -version = "0.5.0" +version = "0.5.1" description = "Serverless ratelimiting package from Upstash" authors = ["Upstash ", "Zgîmbău Tudor "] maintainers = ["Upstash "] diff --git a/upstash_ratelimit/__init__.py b/upstash_ratelimit/__init__.py index cf940b5..94e4216 100644 --- a/upstash_ratelimit/__init__.py +++ b/upstash_ratelimit/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.5.0" +__version__ = "0.5.1" from upstash_ratelimit.limiter import FixedWindow, Response, SlidingWindow, TokenBucket from upstash_ratelimit.ratelimit import Ratelimit