Skip to content

Commit

Permalink
Upgraded to 2.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mkalioby committed Nov 10, 2020
1 parent 4a772ee commit becfc9e
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 4 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# Change Log

## 2.0.3
* Fixed: __version__ to show correct version

## 2.0.2
* Added: A missing migration
thnks to @swainn

## 2.0.1
* Fixed: issue in migration between Postgres and SQLite
thnks to @swainn and @willingham
Expand Down
6 changes: 4 additions & 2 deletions example/example/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,10 @@

DATABASES = {
'default': {
'ENGINE': 'django.db.backends.sqlite3',
'NAME': os.path.join(BASE_DIR, 'db.sqlite3'),
'ENGINE': 'django.db.backends.mysql',
'NAME': 'mfa',
'USER': 'root',
'PASSWORD': 'password',
}
}

Expand Down
2 changes: 1 addition & 1 deletion mfa/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__="1.6.0"
__version__="2.0.3"
18 changes: 18 additions & 0 deletions mfa/migrations/0010_auto_20201110_0557.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 2.0 on 2020-11-10 05:57

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('mfa', '0009_user_keys_owned_by_enterprise'),
]

operations = [
migrations.AlterField(
model_name='user_keys',
name='key_type',
field=models.CharField(default='TOTP', max_length=25),
),
]
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

setup(
name='django-mfa2',
version='2.0.1',
version='2.0.3',
description='Allows user to add 2FA to their accounts',
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
Expand Down

0 comments on commit becfc9e

Please sign in to comment.