From 65791d8c79bcf53ea578dad0a1dc78d17a39346c Mon Sep 17 00:00:00 2001 From: Tom Christie Date: Thu, 21 Dec 2017 10:17:59 +0000 Subject: [PATCH] Version 3.7.5. Add missing .ico to packaging. --- MANIFEST.in | 2 +- docs/topics/release-notes.md | 9 ++++++++- rest_framework/__init__.py | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 789f2bb16..78f992897 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,6 +1,6 @@ include README.md include LICENSE.md -recursive-include rest_framework/static *.js *.css *.png *.eot *.svg *.ttf *.woff *.woff2 +recursive-include rest_framework/static *.js *.css *.png *.ico *.eot *.svg *.ttf *.woff *.woff2 recursive-include rest_framework/templates *.html schema.js recursice-include rest_framework/locale *.mo global-exclude __pycache__ diff --git a/docs/topics/release-notes.md b/docs/topics/release-notes.md index 52a7e6fbd..7b6cad95e 100644 --- a/docs/topics/release-notes.md +++ b/docs/topics/release-notes.md @@ -40,7 +40,13 @@ You can determine your currently installed version using `pip freeze`: ## 3.7.x series -### 3.7.4 +### 3.7.6 + +**Date**: [21st December 2017][3.7.6-milestone] + +* Add missing *.ico icon files to packaging. + +### 3.7.5 **Date**: [21st December 2017][3.7.5-milestone] @@ -932,6 +938,7 @@ For older release notes, [please see the version 2.x documentation][old-release- [3.7.3-milestone]: https://github.com/encode/django-rest-framework/milestone/60?closed=1 [3.7.4-milestone]: https://github.com/encode/django-rest-framework/milestone/62?closed=1 [3.7.5-milestone]: https://github.com/encode/django-rest-framework/milestone/63?closed=1 +[3.7.6-milestone]: https://github.com/encode/django-rest-framework/milestone/64?closed=1 [gh2013]: https://github.com/encode/django-rest-framework/issues/2013 diff --git a/rest_framework/__init__.py b/rest_framework/__init__.py index 492ecad15..665d9ea41 100644 --- a/rest_framework/__init__.py +++ b/rest_framework/__init__.py @@ -8,7 +8,7 @@ ______ _____ _____ _____ __ """ __title__ = 'Django REST framework' -__version__ = '3.7.5' +__version__ = '3.7.6' __author__ = 'Tom Christie' __license__ = 'BSD 2-Clause' __copyright__ = 'Copyright 2011-2017 Tom Christie'