diff --git a/HISTORY.rst b/HISTORY.rst index 756d14e..5f4ba5c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,12 @@ Release History --------------- +v0.2.0 - 2017-02-17 +~~~~~~~~~~~~~~~~~~~ +* Supported Django versions: 1.8, 1.9, 1.10, and 1.11 +* Supported Python versions: 2.7, 3.3, 3.4. 3.5, 3.6 +* Add "DNT" to Vary header in response (eillarra) + v0.1.0 - 2011-02-16 ~~~~~~~~~~~~~~~~~~~ * Initial Release diff --git a/dnt/__init__.py b/dnt/__init__.py index c2a1225..b06ce49 100644 --- a/dnt/__init__.py +++ b/dnt/__init__.py @@ -3,4 +3,4 @@ https://en.wikipedia.org/wiki/Do_Not_Track """ -VERSION = '0.1.0' +VERSION = '0.2.0' diff --git a/setup.py b/setup.py index f6a34e4..47540af 100644 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ def long_description(): setup( name='django-dnt', - version='0.1.0', + version='0.2.0', description=description + '.', long_description=long_description(), author='James Socol',