more updates on the deployment stuff
This commit is contained in:
@@ -1,8 +1,8 @@
|
||||
"""Django AWS SES: A Django email backend for Amazon SES."""
|
||||
|
||||
default_app_config = 'django_aws_ses.apps.DjangoAwsSesBackendConfig'
|
||||
|
||||
# When changing this, remember to change it in setup.py
|
||||
VERSION = (0, 0, 1)
|
||||
__version__ = '.'.join([str(x) for x in VERSION])
|
||||
VERSION = (0, 1, 0)
|
||||
__version__ = '.'.join(str(x) for x in VERSION)
|
||||
__author__ = 'Ray Jessop'
|
||||
__all__ = ('Django AWS SES Backend',)
|
||||
__all__ = ('SESBackend', 'DjangoAwsSesBackendConfig')
|
||||
Reference in New Issue
Block a user