Skip to content

Commit

Permalink
Release Djblets 0.6.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
chipx86 committed Nov 20, 2010
1 parent 8190f43 commit 7187393
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 1 deletion.
33 changes: 33 additions & 0 deletions NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,36 @@
version 0.6.5 final (20-November-2010):
* djblets.datagrid:
* MEDIA_SERIAL is now used for all the images in the datagrid
template. Patch by Ben Hollis.

* djblets.util:
* Added a @root_url decorator for use with get_absolute_url
implementations, which appends SITE-ROOT to any returned URLs.

* Added a CounterField for atomically updating counters.

CounterField can be used to atomically increment or decrement
an integer stored in the database, on individual models or
on many models at a time. It's intended to substitute for
potentially expensive or numerous SQL queries that retrieve
counts of objects.

* Updated the custom fields for Django 1.2 multi-database
compatibility.

* djblets.webapi:
* Fixed a bug in serializing 'long' values in XML.

* Resources now Vary on HTTP Accept, meaning that the browser won't
cache the wrong response type when accessing the same resource
with two different requested mimetypes.

* Reduced the SQL query count for resources.

* Fixed problems that could occur with URLs when serializing objects in
a list and when returning links.


version 0.6.4 final (14-September-2010):
* djblets.testing:
* An undefined variable error when using the Selenium test support
Expand Down
2 changes: 1 addition & 1 deletion djblets/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#
# (Major, Minor, Micro, alpha/beta/rc/final, Release Number, Released)
#
VERSION = (0, 6, 5, 'alpha', 0, False)
VERSION = (0, 6, 5, 'final', 0, True)


def get_version_string():
Expand Down

0 comments on commit 7187393

Please sign in to comment.