Skip to content

Commit

Permalink
6.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
kata198 committed May 24, 2017
1 parent 40526a8 commit 07d946c
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 3 deletions.
7 changes: 7 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions IndexedRedis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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'],
Expand Down

0 comments on commit 07d946c

Please sign in to comment.