Skip to content

Commit

Permalink
Updates package info, updates release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
rsinger86 committed Oct 31, 2021
1 parent 8fcc3b6 commit 009be3f
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 6 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,10 @@ Instead of overriding `save` and `__init__` in a clunky way that hurts readabili

# Changelog

## 0.9.3 (October 2021)

- Correct packge info to note that Django 3.2 is supported.

## 0.9.2 (October 2021)

- Run hooked methods inside transactions, just as signals do. Thanks @amirmotlagh!
Expand Down
2 changes: 1 addition & 1 deletion django_lifecycle/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from .django_info import IS_GTE_1_POINT_9

__version__ = "0.9.2"
__version__ = "0.9.3"
__author__ = "Robert Singer"
__author_email__ = "[email protected]"

Expand Down
12 changes: 11 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,17 +1,27 @@
asgiref==3.4.1
Click==7.0
Django==3.1.13
Django==3.2.8
djangorestframework==3.11.2
ghp-import==2.0.2
importlib-metadata==4.8.1
Jinja2==2.11.3
livereload==2.6.1
Markdown==3.2.1
MarkupSafe==1.1.1
mergedeep==1.3.4
mkdocs==1.2.3
mkdocs-material==4.6.3
packaging==21.0
Pygments==2.7.4
pymdown-extensions==6.3
pyparsing==3.0.0
python-dateutil==2.8.2
pytz==2018.3
PyYAML==5.4
pyyaml-env-tag==0.1
six==1.14.0
sqlparse==0.3.0
tornado==6.0.3
urlman==1.2.0
watchdog==2.1.6
zipp==3.6.0
6 changes: 2 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ def readme():
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Framework :: Django :: 3.2",
]
setup(
name="django-lifecycle",
Expand All @@ -52,8 +53,5 @@ def readme():
long_description=readme(),
classifiers=classifiers,
long_description_content_type="text/markdown",
install_requires=[
"Django>=2.0",
"urlman>=1.2.0"
],
install_requires=["Django>=2.0", "urlman>=1.2.0"],
)

0 comments on commit 009be3f

Please sign in to comment.