more updates on the deployment stuff

This commit is contained in:
2025-04-18 14:06:39 -05:00
parent a5a7344d3b
commit 06fcb36121
6 changed files with 172 additions and 178 deletions

View File

@@ -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')