Skip to content

Commit

Permalink
Prep for 5.0.13 release
Browse files Browse the repository at this point in the history
  • Loading branch information
willbarton committed Jun 8, 2023
1 parent 2667995 commit d17d277
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
16 changes: 16 additions & 0 deletions docs/releasenotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,24 @@

### What's new?


## 5.0.13

### What's new?

- Modernize code for Python 3.6+ (thanks [@adamchainz](https://github.com/adamchainz)!)
- Run linters with Python 3.11 (thanks [@adamchainz](https://github.com/adamchainz)!)
- Format with Black 23 (thanks [@adamchainz](https://github.com/adamchainz)!)
- Added Django 4.2 support (thanks [@adamchainz](https://github.com/adamchainz)!).

### Removals

- Removed Python 3.6 support (thanks [@michael-k](https://github.com/michael-k)!).

### Bug fixes

- Removed errant print statement (thanks [@Natim](https://github.com/Natim)!).


## 5.0.12

Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import find_packages, setup


install_requires = ["Django>=1.11"]
install_requires = ["Django>=2.2"]

testing_extras = [
"coverage>=3.7.0",
Expand All @@ -28,7 +28,7 @@
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
license="CC0",
version="5.0.12",
version="5.0.13",
include_package_data=True,
packages=find_packages(),
python_requires=">=3.7",
Expand Down

0 comments on commit d17d277

Please sign in to comment.