summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAdrian Holovaty <adrian@holovaty.com>2006-07-28 22:24:05 +0000
committerAdrian Holovaty <adrian@holovaty.com>2006-07-28 22:24:05 +0000
commit2cb629e05dbc5d1e9a19128470ed94a738fa9baa (patch)
tree3beef2ae9f133bda608a051d582b193aea7dd08e /docs
parent3ad00f3acff9cfe824b11d5fc0281f2142560509 (diff)
Added some more stuff to docs/release_notes_0.95.txt
git-svn-id: http://code.djangoproject.com/svn/django/trunk@3484 bcc190cf-cafb-0310-a4f2-bffc1f526a37
Diffstat (limited to 'docs')
-rw-r--r--docs/release_notes_0.95.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/release_notes_0.95.txt b/docs/release_notes_0.95.txt
index a763dada72..4a7658f070 100644
--- a/docs/release_notes_0.95.txt
+++ b/docs/release_notes_0.95.txt
@@ -52,6 +52,8 @@ The new features and changes introduced in 0.95 include:
want to use these applications, you no longer have to install their
database tables.
+ * Django now has support for managing database transactions.
+
* We've added the ability to write custom authentication and authorization
backends for authenticating users against alternate systems, such as
LDAP.
@@ -59,6 +61,8 @@ The new features and changes introduced in 0.95 include:
* We've made it easier to add custom table-level functions to models,
through a new "Manager" API.
+ * It's now possible to use Django without a database.
+
* It's now more explicit and natural to override save() and delete()
methods on models, rather than needing to hook into the pre_save() and
post_save() method hooks.