From 9ce4369b046aa45b1dc9452eacd06fbc5e15ce82 Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Tue, 7 May 2024 22:56:38 +0300 Subject: [PATCH 1/2] chore: bump dependencies --- pyproject.toml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3f22e04023..c4f419a0a6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -75,13 +75,13 @@ redis = ["redis>=5.0.0,<6.0.0"] # dev dependencies devdocs = [ - "mkdocs-material==9.5.18", + "mkdocs-material==9.5.21", "mkdocs-static-i18n==1.2.2", "mdx-include==1.4.2", "mkdocstrings[python]==0.25.0", "mkdocs-literate-nav==0.6.1", - "mkdocs-git-revision-date-localized-plugin==1.2.4", - "mike==2.0.0", # versioning + "mkdocs-git-revision-date-localized-plugin==1.2.5", + "mike==2.1.1", # versioning "mkdocs-minify-plugin==0.8.0", "mkdocs-macros-plugin==1.0.5", # includes with variables "mkdocs-glightbox==0.3.7", # img zoom @@ -106,7 +106,7 @@ types = [ lint = [ "faststream[types]", - "ruff==0.4.2", + "ruff==0.4.3", "bandit==1.7.8", "semgrep==1.70.0", "codespell==2.2.6", @@ -121,7 +121,7 @@ test-core = [ testing = [ "faststream[test-core]", - "fastapi==0.110.2", + "fastapi==0.111.0", "pydantic-settings>=2.0.0,<3.0.0", "httpx==0.27.0", "PyYAML==6.0.1", From 0c8feff82bca250251fd700379ca7bcaf26ef72b Mon Sep 17 00:00:00 2001 From: Nikita Pastukhov Date: Tue, 7 May 2024 22:57:03 +0300 Subject: [PATCH 2/2] chore: bump version --- faststream/__about__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/faststream/__about__.py b/faststream/__about__.py index 20bfe0ee61..5c3e4f3a29 100644 --- a/faststream/__about__.py +++ b/faststream/__about__.py @@ -1,6 +1,6 @@ """Simple and fast framework to create message brokers based microservices.""" -__version__ = "0.5.3" +__version__ = "0.5.4" SERVICE_NAME = f"faststream-{__version__}"