Updated to v2.0.1

This commit is contained in:
Mohamed ElKalioby
2020-09-10 09:13:38 +03:00
parent 5b97d5aa6d
commit 4a772ee626
3 changed files with 7 additions and 3 deletions

View File

@@ -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

View File

@@ -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)

View File

@@ -4,7 +4,7 @@ from setuptools import find_packages, setup
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 @@ setup(
license='MIT',
packages=find_packages(),
install_requires=[
'django >= 1.7',
'django >= 2.0',
'jsonfield',
'simplejson',
'pyotp',