forked from kellymclaughlin/erlectricity
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHistory.txt
More file actions
35 lines (31 loc) · 1.33 KB
/
History.txt
File metadata and controls
35 lines (31 loc) · 1.33 KB
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
== 1.1.1 / 2009-10-28
* Bug Fixes
* Fix bignum encoding
* Prevent stack overflow for massive binaries in c decoder
* Optimize strings in c decoder
== 1.1.0 / 2009-10-08
* Minor Improvements
* Implement Bignum encoding
* Fix tests on Erlang R13B
== 1.0.2 / 2009-06-03
* Bug Fixes
* Fix decoding of atoms [github.com/bwbuchanan]
* Work around Ruby's reluctance to convert the empty string to
a symbol [github.com/bwbuchanan]
== 1.0.1 / 2009-05-03
* Bug Fixes
* Fix premature null byte termination on binary decode
== 1.0.0 / 2009-04-29
* Backward Incompatible Changes
* Implicit array call for f.when(:echo, String) must now be called as
f.when([:echo, String]) to eliminate ambiguity
* Implicit array call for f.send!(:ok, "foo") must now be called as
f.send!([:ok, "foo"]) to eliminate ambiguity
* The receive loop now defaults to using file descriptors 3 and 3
instead of STDIN and STDOUT. This prevents inadvertent output
statements from silently corrupting the transfer protocol.
* Erlang atoms 'true' and 'false' are now converted into Ruby booleans
* Erlectricity::Decoder.read_any_from -> Erlectricity::Decoder.decode
* Major Enhancements
* Calling `rake` now runs tests (with and without compiled C extensions)
* Package management is now done by Jeweler