From 783f4a8ad1b67ae3056ddb97b184a2264367991e Mon Sep 17 00:00:00 2001 From: Mike Edmunds Date: Tue, 7 Jan 2020 13:53:05 -0800 Subject: [PATCH] Release 0.3 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (And start calling it "Beta", since it's been used in production—at least by me—for over a year.) --- Makefile | 3 ++- aws_cfn_ses_domain/__about__.py | 6 +++--- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 5cdc57d..dacd135 100644 --- a/Makefile +++ b/Makefile @@ -210,7 +210,8 @@ clean: ## Run tests test: $(PYTHON) -m unittest discover \ - --start-directory '$(TESTS_DIR)' + --start-directory '$(TESTS_DIR)' \ + --top-level-directory . .PHONY: check diff --git a/aws_cfn_ses_domain/__about__.py b/aws_cfn_ses_domain/__about__.py index 81284aa..f206ed3 100644 --- a/aws_cfn_ses_domain/__about__.py +++ b/aws_cfn_ses_domain/__about__.py @@ -14,18 +14,18 @@ # See the License for the specific language governing permissions and # limitations under the License. -VERSION = (0, 3, 'dev0') +VERSION = (0, 3) __version__ = ".".join(str(v) for v in VERSION) NAME = "aws-cfn-ses-domain" -DESCRIPTION = "AWS CloudFormation custom resource for managing Amazon SES domains" +DESCRIPTION = "AWS CloudFormation resources for Amazon SES domain and email identities" HOMEPAGE = "https://github.com/medmunds/aws-cfn-ses-domain" AUTHOR = "Mike Edmunds" AUTHOR_EMAIL = "medmunds@gmail.com" LICENSE = "Apache License 2.0" CLASSIFIERS = [ - 'Development Status :: 3 - Alpha', + 'Development Status :: 4 - Beta', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Topic :: System :: Installation/Setup',