We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13fa24a commit 0d09cdcCopy full SHA for 0d09cdc
CHANGELOG.md
@@ -1,8 +1,20 @@
1
# rejson-py changelog
2
3
+## 0.5.1 20191129
4
+
5
+* #29 Use io.open() and 'utf-8' encoding to read version
6
7
+## 0.5.0 20190901
8
9
+* #26 Fixing retrieving non-ascii string with JSON.GET, added no_escape flag
10
11
+## 0.4.0 20190308
12
13
+* Add exception handler for .jsonget for non-existent keys
14
15
## 0.3.0 20190107
16
-*upgrade dependency to redis-py >=3.0.0
17
+* Upgrade dependency to redis-py >=3.0.0
18
19
## 0.2.1 20170605
20
rejson/__init__.py
@@ -120,6 +120,6 @@ def decode(self, obj):
120
obj = rj.jsonget('custom', Path.rootPath())
121
```
122
"""
123
-__version__ = "0.5.0"
+__version__ = "0.5.1"
124
from .client import Client
125
from .path import Path
0 commit comments