forked from hdima/erlport
-
Notifications
You must be signed in to change notification settings - Fork 1
/
CHANGES
66 lines (37 loc) · 1.85 KB
/
CHANGES
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
61
62
63
64
65
66
Version 0.7 (2011-MM-DD)
- Fixed "Port._read_data() may read excess data"
(https://github.com/hdima/erlport/issues/2) (reported by Ivan Glushkov)
- Added erlport.org sources (Dmitry Vasiliev)
- Added exception handling (Dmitry Vasiliev)
- Updated README.rst with note about erlport.String class (Jacob Perkins)
Version 0.6 (2010-04-26)
- Encode datetime as a tuple of two tuples (Marko Mikulicic)
- Fixed a bug in the SMALL/LARGE_BIG_EXT decoding where an extra byte was
being added to the number if there was any data after the number
(Paul Bonser)
Version 0.5 (2010-02-25)
- Added 'compressed' keyword argument for Port (Dmitry Vasiliev)
- Encode None as atom none (Dmitry Vasiliev)
- Encode dict as a proplist (ordered by Python sort order, may be used as
orddict if keys are all the same type) (Bob Ippolito)
- Encode True, False as true and false (Bob Ippolito)
- Added support for encoding and decoding compressed terms (Bob Ippolito)
- Optimized encoding and decoding of big integers, general encoder
optimization hacks (avoid global lookups) (Bob Ippolito)
Version 0.4 (2010-01-10)
- Added support for big integers
- Added support for Erlang bitstrings whose length in bits is not a
multiple of 8
- Updated examples to work on Windows
- Now decode() doesn't return String objects, only lists. Use String as
wrapper if you expect Unicode string instead of a list.
- Optimized encoding for lists of bytes (integer in the range 0-255)
- Fixed encoding/decoding for integer values
- Fixed encoding for small Unicode strings with characters in range 128-255
Version 0.3 (2010-01-03)
- Added float datatype
- Splitted Port and Protocol
- Added more examples
- Miscellaneous fixes
Version 0.2 (2009-12-29)
- Initial version