Skip to content

Commit

Permalink
Added mention of the big integer field and failfast test option to th…
Browse files Browse the repository at this point in the history
…e 1.2 release notes.

git-svn-id: http://code.djangoproject.com/svn/django/trunk@11943 bcc190cf-cafb-0310-a4f2-bffc1f526a37
  • Loading branch information
kmtracey committed Dec 22, 2009
1 parent 3d00992 commit 7ef212a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions docs/releases/1.2.txt
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -277,3 +277,15 @@ alternative to the normal primary-key based object references in a
fixture, improving readability, and resolving problems referring to fixture, improving readability, and resolving problems referring to
objects whose primary key value may not be predictable or known. objects whose primary key value may not be predictable or known.


`BigIntegerField`
-----------------

Models can now use a 64 bit :class:`~django.db.models.BigIntegerField` type.

Fast Failure for Tests
----------------------

The `test` subcommand of `django-admin.py`, and the `runtests.py` script
used to run Django's own test suite, support a new `--failfast` option.
When specified, this option causes the test runner to exit after
encountering a failure instead of continuing with the test run.

0 comments on commit 7ef212a

Please sign in to comment.