diff --git a/Changelog b/Changelog index d29593d..28cd4d4 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,10 @@ +6.0.3 - Tue May 23 2017 + +- Try to make deepcopy, if possible, when setting/fetching values to _origData +(that is used to determine if a field has changed and needs to be updated on a +save). An example would be a stored json with a inside. If it was updated +externally, it would not be seen as an update. Now it will. + 6.0.2 - Wed May 17 2017 - Update a bunch of docstrings diff --git a/IndexedRedis/__init__.py b/IndexedRedis/__init__.py index 3044892..6e81068 100644 --- a/IndexedRedis/__init__.py +++ b/IndexedRedis/__init__.py @@ -41,10 +41,10 @@ INDEXED_REDIS_PREFIX = '_ir_|' # Version as a tuple (major, minor, patchlevel) -INDEXED_REDIS_VERSION = (6, 0, 2) +INDEXED_REDIS_VERSION = (6, 0, 3) # Version as a string -INDEXED_REDIS_VERSION_STR = '6.0.2' +INDEXED_REDIS_VERSION_STR = '6.0.3' # Package version __version__ = INDEXED_REDIS_VERSION_STR diff --git a/setup.py b/setup.py index eb581af..bfeba49 100755 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ long_description = summary setup(name='indexedredis', - version='6.0.2', + version='6.0.3', packages=['IndexedRedis', 'IndexedRedis.fields'], install_requires=['redis', 'QueryableList'], requires=['redis', 'QueryableList'],