diff --git a/.bumpversion.cfg b/.bumpversion.cfg index f038530..4e3d256 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 3.0.0 +current_version = 3.0.1 commit = True tag = True tag_name = {new_version} diff --git a/CHANGELOG b/CHANGELOG index 844a2b4..6e1ee81 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,7 @@ +v3.0.1 +----- +Remove all newlines from subject + v3.0 ----- Add escaping to HTML parts in templates diff --git a/setup.py b/setup.py index 811db6e..5c5eb92 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup, find_packages DESCRIPTION = "A Django oriented templated / transaction email abstraction" -VERSION = '3.0.0' +VERSION = '3.0.1' LONG_DESCRIPTION = None try: LONG_DESCRIPTION = open('README.rst').read()