From 2cb629e05dbc5d1e9a19128470ed94a738fa9baa Mon Sep 17 00:00:00 2001 From: Adrian Holovaty Date: Fri, 28 Jul 2006 22:24:05 +0000 Subject: [PATCH] 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 --- docs/release_notes_0.95.txt | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/release_notes_0.95.txt b/docs/release_notes_0.95.txt index a763dada725..4a7658f070f 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.