Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 5.1.0 release #2374

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 |
Expand Down
2 changes: 1 addition & 1 deletion ext/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -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",
Expand Down
Loading