Skip to content

Commit

Permalink
Merge pull request #35 from bltravis/master
Browse files Browse the repository at this point in the history
Update version to 0.2.2.
  • Loading branch information
bltravis committed Jul 10, 2013
2 parents b5cd96f + e711fbc commit 4b392d6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ This project uses Travis for continuous integration: [![Build Status](https://se

ChangeLog
---------
### 0.2.2

* Fixed: Django admin needs to be able to create blank instances of the fields in order to create a new model. This broke with `BaseEncryptedNumberField`. (via [defrex](https://github.com/svetlyak40wt/django-fields/pull/32 "Issue #32"))
* Fixed: `block_type` wasn't added to the south rules. (via [defrex](https://github.com/svetlyak40wt/django-fields/pull/33 "Issue #33"))
* Fixed: Newer code paths with `block_type` specified couldn't reuse the `cipher` object on the field class. `to_python` was already redefining it before decrypting the value, but `get_db_prep_value` wasn't before encrypting. The first time you used a model it would be fine, but the second would fail. Thus the tests were passing but the classes were functionally useless in an application. (via [defrex](https://github.com/svetlyak40wt/django-fields/pull/34 "Issue #34"))

### 0.2.1

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
setup(
name = 'django-fields',
version = '0.2.1',
version = '0.2.2',
description = 'Django-fields is an application which includes different kinds of models fields.',
keywords = 'django apps tools collection',
license = 'New BSD License',
Expand Down

0 comments on commit 4b392d6

Please sign in to comment.