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
This commit is contained in:
Adrian Holovaty 2006-07-28 22:24:05 +00:00
parent 3ad00f3acf
commit 2cb629e05d
1 changed files with 4 additions and 0 deletions

View File

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