Skip to content

Commit

Permalink
Update README and prepare 0.6 release.
Browse files Browse the repository at this point in the history
  • Loading branch information
zlorf committed Sep 15, 2013
1 parent f12c7ca commit 176a715
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 2 deletions.
18 changes: 17 additions & 1 deletion README.rst
Expand Up @@ -22,6 +22,21 @@ will be used to represent the settings that are stored in the database. Then,
the settings may edited at run-time using the provided editor, and all Python
code in your application that uses the setting will receive the updated value.

Requirements
============

+------------------+------------+--------------+
| Dbsettings | Python | Django |
+==================+============+==============+
| >=0.6 | 3.2 | 1.5 |
| +------------+--------------+
| | 2.6 - 2.7 | 1.3 - 1.5 |
+------------------+------------+--------------+
| <=0.5 | 2.6 - 2.7 | 1.2\* - 1.4 |
+------------------+------------+--------------+

\* Possibly version below 1.2 will work too, but not tested.

Installation
============

Expand Down Expand Up @@ -407,7 +422,8 @@ some of the settings provided earlier in this document::
Changelog
=========

**dev**
**0.6**
- Added compatibility with Django 1.5 and python3, dropped support for Django 1.2.
- Fixed permissions: added permission for editing non-model (module-level) settings
- Make PIL/Pillow not required in setup.py
**0.5** (11/10/2012)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages

# Dynamically calculate the version based on dbsettings.VERSION
version_tuple = (0, 5, None)
version_tuple = (0, 6, None)
if version_tuple[2] is not None:
if type(version_tuple[2]) == int:
version = "%d.%d.%s" % version_tuple
Expand Down

0 comments on commit 176a715

Please sign in to comment.