Skip to content

Commit

Permalink
3.0.4 - missed a thing
Browse files Browse the repository at this point in the history
  • Loading branch information
paltman committed Apr 24, 2021
1 parent 0980b75 commit 0b67aec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion account/urls.py
Expand Up @@ -19,7 +19,7 @@
path("confirm_email/<str:key>/", ConfirmEmailView.as_view(), name="account_confirm_email"),
path("password/", ChangePasswordView.as_view(), name="account_password"),
path("password/reset/", PasswordResetView.as_view(), name="account_password_reset"),
path("password/reset/<str:uidb36>/<str:token>/$", PasswordResetTokenView.as_view(), name="account_password_reset_token"),
path("password/reset/<str:uidb36>/<str:token>/", PasswordResetTokenView.as_view(), name="account_password_reset_token"),
path("settings/", SettingsView.as_view(), name="account_settings"),
path("delete/", DeleteView.as_view(), name="account_delete"),
]
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -2,7 +2,7 @@

setup(
name="django-user-accounts",
version="3.0.3",
version="3.0.4",
author="Brian Rosner",
author_email="brosner@gmail.com",
description="a Django user account app",
Expand Down

0 comments on commit 0b67aec

Please sign in to comment.