From d60e31ed0ac4e4115f9ef20041521c201391d592 Mon Sep 17 00:00:00 2001 From: Petter Friberg Date: Sun, 28 Jul 2024 20:03:08 +0200 Subject: [PATCH] Prepare for a release `5.0.4` (#2285) --- 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 cb7ccaff9..95dfe5d04 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.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 | | 5.0.1 | 1.10.x | 5.0 | 4.2 | 3.8 - 3.12 | diff --git a/ext/setup.py b/ext/setup.py index 5f7f2a669..96e4f0871 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.3", + version="5.0.4", 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 b6737740d..38b5920ff 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.3", + "django-stubs-ext>=5.0.4", "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.3", + version="5.0.4", description="Mypy stubs for Django", long_description=readme, long_description_content_type="text/markdown",