summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorKaren Tracey <kmtracey@gmail.com>2009-12-22 13:41:51 +0000
committerKaren Tracey <kmtracey@gmail.com>2009-12-22 13:41:51 +0000
commit7ef212af149540aa2da577a960d0d87029fd1514 (patch)
tree3aa9bf06e7bb4f91c0ee4902354d15b49da5b178 /docs
parent3d00992d9fefdcdc3bbc3fc85c1a409350391e5c (diff)
Added mention of the big integer field and failfast test option to the 1.2 release notes.
git-svn-id: http://code.djangoproject.com/svn/django/trunk@11943 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/releases/1.2.txt12
1 files changed, 12 insertions, 0 deletions
diff --git a/docs/releases/1.2.txt b/docs/releases/1.2.txt
index 9e8816e148..76c6eaf9f4 100644
--- a/docs/releases/1.2.txt
+++ b/docs/releases/1.2.txt
@@ -277,3 +277,15 @@ alternative to the normal primary-key based object references in a
fixture, improving readability, and resolving problems referring to
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.