Skip to content

Commit

Permalink
0.6.0rc1
Browse files Browse the repository at this point in the history
Migration to track the removal of U2F.
  • Loading branch information
oliwarner committed Oct 5, 2023
1 parent 89297b1 commit 733b43c
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
18 changes: 18 additions & 0 deletions multifactor/migrations/0004_alter_userkey_key_type.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Generated by Django 4.2.5 on 2023-10-05 09:05

from django.db import migrations, models


class Migration(migrations.Migration):

dependencies = [
('multifactor', '0003_userkey_name'),
]

operations = [
migrations.AlterField(
model_name='userkey',
name='key_type',
field=models.CharField(choices=[('FIDO2', 'FIDO2 Security Device'), ('TOTP', 'TOTP Authenticator')], max_length=25),
),
]
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "django-multifactor"
version = "0.6.0rc0"
version = "0.6.0rc1"
description = "Drop-in multifactor authentication subsystem for Django."
authors = ["Oli Warner <[email protected]>"]
repository = "https://github.com/oliwarner/django-multifactor"
Expand Down

0 comments on commit 733b43c

Please sign in to comment.