diff --git a/CHANGELOG.md b/CHANGELOG.md index b174e6f..c8b0bf7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,7 @@ # Change Log +## 2.0.1 + * Fixed: issue in migration between Postgres and SQLite + thnks to @swainn and @willingham ## 2.0 * Dropped support to djangp-1.8 and Python 2.7 diff --git a/README.md b/README.md index ee749c1..946da74 100644 --- a/README.md +++ b/README.md @@ -29,7 +29,7 @@ Depends on * ua-parser * user-agents * python-jose -* fido2==0.7 +* fido2==0.8.1 # Installation @@ -158,3 +158,4 @@ function some_func() { * [d3cline](https://github.com/d3cline) * [swainn](https://github.com/swainn) * [unramk](https://github.com/unramk) +* [willingham](https://github.com/willingham) diff --git a/setup.py b/setup.py index 9bcefc7..37d9856 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name='django-mfa2', - version='2.0.0', + version='2.0.1', description='Allows user to add 2FA to their accounts', long_description=open("README.md").read(), long_description_content_type="text/markdown", @@ -16,7 +16,7 @@ license='MIT', packages=find_packages(), install_requires=[ - 'django >= 1.7', + 'django >= 2.0', 'jsonfield', 'simplejson', 'pyotp',