Skip to content

Commit

Permalink
Updated read me and version bump to 1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
coordt committed Jul 12, 2012
1 parent 234bc9f commit e588f33
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 2 deletions.
17 changes: 17 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
@@ -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
================================

Expand Down
5 changes: 3 additions & 2 deletions categories/__init__.py
Original file line number Diff line number Diff line change
@@ -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__, ]
Expand Down

0 comments on commit e588f33

Please sign in to comment.