diff --git a/.hgtags b/.hgtags index ec8b47f..7605847 100644 --- a/.hgtags +++ b/.hgtags @@ -65,3 +65,6 @@ d195489ca510261fcc98a8e4c110605056bd4e35 stable 7a2f3d40c156ae040a7a89eeda46d5c112770fbd 0.7 d195489ca510261fcc98a8e4c110605056bd4e35 stable 6438b7837bab033d447c885e95b2a0e29d1a7173 stable +97a37f8cf32530836f3811c0ca42db4add2ebbb5 0.7.1 +6438b7837bab033d447c885e95b2a0e29d1a7173 stable +3e1f21c7a76f9d9d5a9aee9e948e46eb6d7b0063 stable diff --git a/CHANGELOG.rst b/CHANGELOG.rst new file mode 100644 index 0000000..f1c489b --- /dev/null +++ b/CHANGELOG.rst @@ -0,0 +1,13 @@ +Release history +===================================== +0.7.1 +------------------------------------- +Release date: 2013-09-20 + +- Updated django-localeurl dependancy to 2.0.1. + +0.7 +------------------------------------- +Release date: 2013-09-19 + +- Simplified use of local language names. diff --git a/setup.py b/setup.py index 0c07c0a..b99b20c 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ except: readme = '' -version = '0.7' +version = '0.7.1' install_requires = [ 'six==1.4.1', @@ -17,7 +17,7 @@ PY2 = sys.version_info[0] == 2 PY3 = sys.version_info[0] == 3 if PY2: - install_requires.append('django-localeurl==1.5') + install_requires.append('django-localeurl==2.0.1') except: pass