Updated read me and version bump to 1.1

This commit is contained in:
Corey Oordt 2012-07-12 19:31:47 -04:00
parent 234bc9f963
commit e588f33c99
2 changed files with 20 additions and 2 deletions

View file

@ -1,7 +1,24 @@
=================
Django Categories
=================
Django Categories grew out of our need to provide a basic hierarchical taxonomy management system that multiple applications could use independently or in concert.
As a news site, our stories, photos, and other content get divided into "sections" and we wanted all the apps to use the same set of sections. As our needs grew, the Django Categories grew in the functionality it gave to category handling within web pages.
New in 1.1
==========
* Fixed a cosmetic bug in the Django 1.4 admin. Action checkboxes now only appear once.
* Template tags are refactored to allow easy use of any model derived from ``CategoryBase``.
* Improved test suite.
* Improved some of the documentation.
Upgrade path from 1.0.2 to 1.0.3
================================

View file

@ -1,11 +1,12 @@
__version_info__ = {
'major': 1,
'minor': 0,
'micro': 5,
'minor': 1,
'micro': 0,
'releaselevel': 'final',
'serial': 1
}
def get_version(short=False):
assert __version_info__['releaselevel'] in ('alpha', 'beta', 'final')
vers = ["%(major)i.%(minor)i" % __version_info__, ]