Skip to content

Commit 009be3f

Browse files
committed
Updates package info, updates release notes
1 parent 8fcc3b6 commit 009be3f

File tree

4 files changed

+18
-6
lines changed

4 files changed

+18
-6
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@ Instead of overriding `save` and `__init__` in a clunky way that hurts readabili
6161

6262
# Changelog
6363

64+
## 0.9.3 (October 2021)
65+
66+
- Correct packge info to note that Django 3.2 is supported.
67+
6468
## 0.9.2 (October 2021)
6569

6670
- Run hooked methods inside transactions, just as signals do. Thanks @amirmotlagh!

django_lifecycle/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from .django_info import IS_GTE_1_POINT_9
22

3-
__version__ = "0.9.2"
3+
__version__ = "0.9.3"
44
__author__ = "Robert Singer"
55
__author_email__ = "[email protected]"
66

requirements.txt

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,27 @@
1+
asgiref==3.4.1
12
Click==7.0
2-
Django==3.1.13
3+
Django==3.2.8
34
djangorestframework==3.11.2
5+
ghp-import==2.0.2
6+
importlib-metadata==4.8.1
47
Jinja2==2.11.3
58
livereload==2.6.1
69
Markdown==3.2.1
710
MarkupSafe==1.1.1
11+
mergedeep==1.3.4
812
mkdocs==1.2.3
913
mkdocs-material==4.6.3
14+
packaging==21.0
1015
Pygments==2.7.4
1116
pymdown-extensions==6.3
17+
pyparsing==3.0.0
18+
python-dateutil==2.8.2
1219
pytz==2018.3
1320
PyYAML==5.4
21+
pyyaml-env-tag==0.1
1422
six==1.14.0
1523
sqlparse==0.3.0
1624
tornado==6.0.3
1725
urlman==1.2.0
26+
watchdog==2.1.6
27+
zipp==3.6.0

setup.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ def readme():
3838
"Framework :: Django :: 2.2",
3939
"Framework :: Django :: 3.0",
4040
"Framework :: Django :: 3.1",
41+
"Framework :: Django :: 3.2",
4142
]
4243
setup(
4344
name="django-lifecycle",
@@ -52,8 +53,5 @@ def readme():
5253
long_description=readme(),
5354
classifiers=classifiers,
5455
long_description_content_type="text/markdown",
55-
install_requires=[
56-
"Django>=2.0",
57-
"urlman>=1.2.0"
58-
],
56+
install_requires=["Django>=2.0", "urlman>=1.2.0"],
5957
)

0 commit comments

Comments
 (0)