Skip to content

Commit

Permalink
Release 0.3
Browse files Browse the repository at this point in the history
(And start calling it "Beta", since it's been used in production—at least by me—for over a year.)
  • Loading branch information
medmunds authored Jan 7, 2020
1 parent 4a1648e commit 783f4a8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions aws_cfn_ses_domain/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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 = "[email protected]"
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',
Expand Down

0 comments on commit 783f4a8

Please sign in to comment.