diff --git a/doc/changelog.rst b/doc/changelog.rst index 811b0b4990..86165d4df1 100644 --- a/doc/changelog.rst +++ b/doc/changelog.rst @@ -1,13 +1,13 @@ Shuup Change Log ================ -Unrealeased +Shuup 1.6.5 ----------- -- List all changes after last release here (newer on top). Each change - on a separate bullet point line. Wrap the file at 79 columns or so. - When releasing next version, the "Unreleased" header will be replaced - with appropriate version header and this help text will be removed. +General +~~~~~~ + +- Allow django-mptt<0.9 for Django 1.8 and 1.9. Shuup 1.6.4 ----------- diff --git a/doc/release_notes/1.6.5.rst b/doc/release_notes/1.6.5.rst new file mode 100644 index 0000000000..4e6426b8fa --- /dev/null +++ b/doc/release_notes/1.6.5.rst @@ -0,0 +1,9 @@ +Shuup 1.6.5 Release Notes +========================= + +Released on 2018-07-02 1:15am -0800. + +Allow django-mptt<0.9 for Django 1.8 and 1.9. + +List of changes see `Git commit log +`__. diff --git a/setup.py b/setup.py index ed102ecc3d..3e0919b3b2 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ # - Add ".post0.dev" suffix to VERSION variable here NAME = 'shuup' -VERSION = '1.6.4.post0.dev' +VERSION = '1.6.5' DESCRIPTION = 'E-Commerce Platform' AUTHOR = 'Shuup Inc.' AUTHOR_EMAIL = 'shuup@shuup.com'