Added an app-loading feature to the release notes.

This commit is contained in:
Aymeric Augustin 2014-01-05 21:10:15 +01:00
parent f630373b92
commit 021b0b0029
1 changed files with 4 additions and 0 deletions

View File

@ -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.