From 64a15b36c8f49a260c32c04c9aa259342a707106 Mon Sep 17 00:00:00 2001 From: Daniel Lok Date: Mon, 5 Feb 2024 19:21:01 +0800 Subject: [PATCH] chore: prepare 0.1.9 release --- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1bf333f..dc3d761 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## [0.1.9] - 2024-02-05 + +### Added + +- Fix `limit_value` typehint in `limit()` function (thanks @PookieBuns) +- Fix `limit_value` typehint in `shared_limit()` function (thanks @aberlioz) +- Only pass `".env"` to starlette `Config` if `".env"` file exists (thanks @daniellok-db) + ## [0.1.8] - 2023-04-07 ### Added diff --git a/pyproject.toml b/pyproject.toml index f404216..c242b7d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "slowapi" -version = "0.1.8" +version = "0.1.9" description = "A rate limiting extension for Starlette and Fastapi" authors = ["Laurent Savaete "] license = "MIT"