forked from jaked/deriving
-
Notifications
You must be signed in to change notification settings - Fork 15
/
CHANGES
76 lines (50 loc) · 1.81 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
67
68
69
70
71
72
73
74
75
76
== 0.8.2
* improved documentation
== 0.8.1
* Declare dependency on 'num'. Fixes build on OS X.
== 0.8
* Compatibility with OCaml 4.06 (-safe-string)
* Drop optcomp dependency and compatibility with OCaml < 4.03
== 0.7.1
* Compatibility with OCaml 4.03
== 0.7
* Compatibility with ocaml-4.02 (Peter Zotoz, Hugo Heuzard)
* Fix toplevel usage (Vincent Bernardoff)
* Class: add equality for sets (Jeremy Yallop)
== 0.6
* Added a 'Default' class (Hugo Heuzard)
* Allow private variant in the 'Functor' class (Pierre Chambart)
* Switch build system to oasis and improved META
== 0.5-ocsigen
* Experimental minimalistic support of GADT
* Allows to register predefined instances
== 0.4-ocsigen
* Compatibility with typeconv >= 108.07.00
== 0.3-ocsigen
* Use "lazy first-order module" instead of "recursive module" to be
compatible with {{{js_of_ocaml}}}.
* Be less restrictive with mutually recursive type definition
* Split runtime into deriving.cma and deriving_num.cma
* Class:
** Typeable: use OCaml's lazy for {{{type_rep}}}
** Show: added separators to {{{map}}} and {{{set}}}
** Show, Dump and Eq: Allow polymorphic type fields.
== 0.2-ocsigen
* Add compatibility with ocamlfind
* Add a type-conv compatibility mode
* Simplify the definition of new class
* Syntax: Add {{{Class<typ>}}} in module_expr.
* Small bug fixes in class:
** Show: Added parentheses around tuples.
** Pickle: remove warning in generated code.
== 0.1.1
* Renamed serialisation classes:
** Pickle -> Dump
** Shelve -> Pickle
* Made Dump and Pickle interface compatible with each other and more
compatible with Marshal.
* Bugfix in the tag hash function on 64-bit platforms.
* Fixed a bug with a functor application quotation that used revised
syntax.
== 0.1
* Initial release