Compare commits

...

2 Commits

Author SHA1 Message Date
nemunaire 7325b3956b Prepare 0.0.7
continuous-integration/drone/tag Build is passing Details
2023-04-17 12:23:56 +02:00
nemunaire f6c354476b Import missing HappyError in authuser when given password is invalid 2023-04-17 12:22:53 +02:00
3 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,8 @@
import json
from urllib.parse import quote
from .api import HappyError
class AuthUser:
def __init__(self, _session, Id, Email, EmailVerification, Password, CreatedAt, LastLoggedIn, AllowCommercials):

View File

@ -1,6 +1,6 @@
[project]
name = "happydomain"
version = "0.0.6"
version = "0.0.7"
authors = [
{ name="happyDomain's team", email="contact+pypi@happydomain.org" },
]

View File

@ -8,7 +8,7 @@ try:
except ImportError:
from distutils.core import setup
version = "0.0.6"
version = "0.0.7"
setup(
name = "happydomain",