diff --git a/README.rst b/README.rst index 142abb1..8c9ec31 100644 --- a/README.rst +++ b/README.rst @@ -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 ================================ diff --git a/categories/__init__.py b/categories/__init__.py index 37fd995..37fc021 100644 --- a/categories/__init__.py +++ b/categories/__init__.py @@ -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__, ]