From 931b5b2f103307b6a55b6f1c079512ca5d5662fa Mon Sep 17 00:00:00 2001 From: Richard Ebeling Date: Mon, 23 Sep 2024 19:39:53 +0200 Subject: [PATCH] Version 5.1.0 release (#2374) --- 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 5b342857c..7af21ed55 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.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 | | 5.0.2 | 1.10.x | 5.0 | 4.2 | 3.8 - 3.12 | diff --git a/ext/setup.py b/ext/setup.py index 96e4f0871..a72ca5731 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.0.4", + version="5.1.0", 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 38b5920ff..eaaf56c5d 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.0.4", + "django-stubs-ext>=5.1.0", "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.0.4", + version="5.1.0", description="Mypy stubs for Django", long_description=readme, long_description_content_type="text/markdown",