summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAymeric Augustin <aymeric.augustin@m4x.org>2014-01-05 21:10:15 +0100
committerAymeric Augustin <aymeric.augustin@m4x.org>2014-01-05 21:10:15 +0100
commit021b0b0029cdecc528a137a5e6913be81c901504 (patch)
tree77410888831869d462ba6e4337a7b1cbb8e86c08
parentf630373b929bc62bf4d66d60c532f7832e5fbe67 (diff)
Added an app-loading feature to the release notes.
-rw-r--r--docs/releases/1.7.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/releases/1.7.txt b/docs/releases/1.7.txt
index a4b230510a..ab813795e9 100644
--- a/docs/releases/1.7.txt
+++ b/docs/releases/1.7.txt
@@ -76,6 +76,10 @@ Improvements thus far include:
* Applications can run code at startup, before Django does anything else, with
the :meth:`~django.apps.AppConfig.ready` method of their configuration.
+* Application labels are assigned correctly to models even when they're
+ defined outside of ``models.py``. You don't have to set
+ :attr:`~django.db.models.Options.app_label` explicitly any more.
+
* It is possible to omit ``models.py`` entirely if an application doesn't
have any models.