From 9b270a0197d3fb01d469ed1a6cb46ca25d2bf0ba Mon Sep 17 00:00:00 2001 From: Petter Friberg Date: Sat, 26 Oct 2024 21:06:40 +0200 Subject: [PATCH] Version 5.1.1 release (#2424) --- README.md | 1 + ext/setup.py | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7af21ed55..c69c3c629 100644 --- a/README.md +++ b/README.md @@ -49,6 +49,7 @@ We rely on different `django` and `mypy` versions: | django-stubs | Mypy version | Django version | Django partial support | Python version | |----------------|--------------|----------------|------------------------|----------------| +| 5.1.1 | 1.13.x | 5.1 | 4.2 | 3.8 - 3.12 | | 5.1.0 | 1.11.x | 5.1 | 4.2 | 3.8 - 3.12 | | 5.0.4 | 1.11.x | 5.0 | 4.2 | 3.8 - 3.12 | | 5.0.3 | 1.11.x | 5.0 | 4.2 | 3.8 - 3.12 | diff --git a/ext/setup.py b/ext/setup.py index a72ca5731..fc32035cc 100755 --- a/ext/setup.py +++ b/ext/setup.py @@ -13,7 +13,7 @@ # It's fine to skip django-stubs-ext releases, but when doing a release, update this to newest django-stubs version. setup( name="django-stubs-ext", - version="5.1.0", + version="5.1.1", description="Monkey-patching and extensions for django-stubs", long_description=readme, long_description_content_type="text/markdown", diff --git a/setup.py b/setup.py index 8b4ad392c..325f5c39e 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ def find_stub_files(name: str) -> List[str]: dependencies = [ "django", "asgiref", - "django-stubs-ext>=5.1.0", + "django-stubs-ext>=5.1.1", "tomli; python_version < '3.11'", # Types: "typing-extensions>=4.11.0", @@ -39,7 +39,7 @@ def find_stub_files(name: str) -> List[str]: setup( name="django-stubs", - version="5.1.0", + version="5.1.1", description="Mypy stubs for Django", long_description=readme, long_description_content_type="text/markdown",