From bf1bb07bf02b207f59e7d07243fff367236014d3 Mon Sep 17 00:00:00 2001 From: Loic Bistuer Date: Thu, 9 Oct 2014 22:48:23 +0700 Subject: [PATCH] Updated release notes following backport of a407b84. Refs #23365. --- docs/releases/1.7.1.txt | 3 +++ docs/releases/1.8.txt | 2 -- docs/topics/migrations.txt | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/releases/1.7.1.txt b/docs/releases/1.7.1.txt index 0d6cd3d3b7..bf12d81a34 100644 --- a/docs/releases/1.7.1.txt +++ b/docs/releases/1.7.1.txt @@ -107,6 +107,9 @@ Bugfixes * Made :func:`~django.utils.http.urlsafe_base64_decode` return the proper type (byte string) on Python 3 (:ticket:`23333`). +* :djadmin:`makemigrations` can now serialize timezone-aware values + (:ticket:`23365`). + * Added a prompt to the migrations questioner when removing the null constraint from a field to prevent an IntegrityError on existing NULL rows (:ticket:`23609`). diff --git a/docs/releases/1.8.txt b/docs/releases/1.8.txt index 892dbd47b2..0e42f1f12f 100644 --- a/docs/releases/1.8.txt +++ b/docs/releases/1.8.txt @@ -269,8 +269,6 @@ Management Commands * The :djadminopt:`--name` option for :djadmin:`makemigrations` allows you to to give the migration(s) a custom name instead of a generated one. -* :djadmin:`makemigrations` can now serialize timezone-aware values. - Migrations ^^^^^^^^^^ diff --git a/docs/topics/migrations.txt b/docs/topics/migrations.txt index dfee3df7ca..40f7cac4aa 100644 --- a/docs/topics/migrations.txt +++ b/docs/topics/migrations.txt @@ -550,7 +550,7 @@ Django can serialize the following: - Any class reference (must be in module's top-level scope) - Anything with a custom ``deconstruct()`` method (:ref:`see below `) -.. versionchanged:: 1.8 +.. versionchanged:: 1.7.1 Support for serializing timezone-aware datetimes was added.