-
Notifications
You must be signed in to change notification settings - Fork 13
/
CHANGELOG
60 lines (49 loc) · 2.04 KB
/
CHANGELOG
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
0.16.1
- Make recursion unit test work in PyPy also
0.16.0
- Don't use C extension under PyPy. (JIT-optimized pure-Python version is
considerably faster.)
0.15.0
- Fix decimal encoding bug/assert (reported by mgorny)
0.14.0
- Fix DecoderException not including offset when C-extension in use, expose
property for it.
- Fix decoding via C extension reading too much data from file-like objects
- Test suite exercises both pure & extension modules when extension enabled
- Expand test suite to increase C extension (line) coverage
- Remove need for pypandoc/rst (use original README.md)
- Fix spelling errors in cli util (hoenn)
0.13.0
- Make extension build more reproducible with sorted sources (bmwiedemann)
- Fix _ubjson_decode_value case statement fallthrough and use correct check
to not re-raise existing decoder DecoderException
0.12.0
- Relax floating point type test case (for 32-bit targets)
- Added Python 3.7 to classifiers list
0.11.0
- Add default parameter to encoder, allowing for unsupported types to be
encoded.
- Add object_hook parameter to decoder, to e.g. allow decoding of custom types
(which were encoded with the help of default parameter).
- Treat object_pairs_hook the same in pure Python mode as with extension
0.10.0
- Support No-Op type (decoder only)
- Allow for object keys to be interned, saving memory if repeated (PY3 only)
- Use PyUnicode_FromStringAndSize instead of PyUnicode_DecodeUTF8 (decoder)
- Open file for writing, not appending (to/from json utility)
- Used more compact json encoding (to/from json utility)
- Enable object key interning (to/from json utility)
0.9.0
- C extension re-implemented (without Cython) with major speedup (7-10x)
- object_pairs_hook now works like built-in json module
- Minor pure version improvements
- Windows build compatibility
0.8.5
- Added Python 3.5 to classifiers list
- Fix index in argv (command line utility)
0.8.4
- License information update
- Allow for lack of stdin/stdout/stdout buffer access
- Allow for extenion building to be skipped via env. var
0.8.3
- Initial public release