Skip to content

Commit b5568e0

Browse files
committed
Release 1.0.0
Update CHANGELOG with 1.0 notes Update trove classifiers
1 parent ca8c234 commit b5568e0

File tree

2 files changed

+17
-3
lines changed

2 files changed

+17
-3
lines changed

CHANGELOG.rst

+11
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,17 @@ Change Log
55
This document records all notable changes to django-templated-mail.
66
This project adheres to `Semantic Versioning <http://semver.org/>`_.
77

8+
---------------------
9+
`1.0.0`_ (2015-10-06)
10+
---------------------
11+
12+
* Breaking API: Update ``set_context_data`` to ``get_context_data``
13+
* Add basic documentation
14+
* Add basic examples
15+
* Update templates rendering to happen on send
16+
* Update dependencies
17+
* Remove Python 3.3 from supported versions
18+
819
---------------------
920
`0.2.0`_ (2015-09-22)
1021
---------------------

setup.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def get_packages(package):
1717

1818
setup(
1919
name='django-templated-mail',
20-
version='0.2.0',
20+
version='1.0.0',
2121
packages=get_packages('templated_mail'),
2222
license='MIT',
2323
author='Sunscrapers',
@@ -28,8 +28,11 @@ def get_packages(package):
2828
include_package_data=True,
2929
url='https://github.com/sunscrapers/django-templated-mail',
3030
classifiers=[
31-
'Development Status :: 3 - Alpha',
32-
'Framework :: Django',
31+
'Development Status :: 5 - Production/Stable',
32+
'Framework :: Django :: 1.8',
33+
'Framework :: Django :: 1.10',
34+
'Framework :: Django :: 1.11',
35+
'Framework :: Django :: 2.0',
3336
'Intended Audience :: Developers',
3437
'License :: OSI Approved :: MIT License',
3538
'Operating System :: OS Independent',

0 commit comments

Comments
 (0)