forked from ocaml/ocaml-re
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGES
60 lines (44 loc) · 1.7 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
1.4.1 (06-Jun-2015)
* Fix 4.00.1 compatibilty with tests.
1.4.0 (12-May-2015)
* Add Re.{mark,marked,mark_set}. Regexps can now be "marked" to query post
execution if they matched.
1.3.2 (14-Apr-2015)
* Fix replacing 0 length matches (#55)
1.3.1 (13-Mar-2015):
* Rename {Cset, Automata} to {Re_cset, Re_automata}
1.3.0 (02-Feb-2015):
* Add Re.split{,_gen,_token,_full,_full_gen}
* Add Re.replace{,_string}
* Add Re.all{,_gen}
* Add posix classes of the form [:xxx:]
* Add complement suport for posix classes
* Add Multiline and anchored flag to Re_pcre
* Add Re_pcre.full_split
1.2.2 (05-May-2014):
* Add a Re.whole_string convenience function to only match whole strings
* Add a ?anchored parameter to functions in Re_glob to specify whole
string matching
* Document Re_glob module
* Fix compilation of submatches occurring inside a Kleen star
* Fix word boundary matching
* Fix definition of Re.xdigit
* Fix Re.exec_partial function
* Fix compilation of patterns of the shape r1r2|r1r3
* Fixed compilation of re.cmxs (Vincent Bernardoff)
* Improved matching of anchored regular expressions: stop as soon as
we know there cannot possibly be any match.
* Updated to OASIS 0.4.x (Vincent Bernardoff)
* Add the linking exception to the license
1.2.1 (07-Apr-2013):
* Correct OASIS metadata (Christophe Troestler).
* Fix typo in Invalid_arg error message (Jeremy Yallop).
1.2.0 (15-Jan-2012):
* Rename Pcre module to `Re_pcre` to make it more suitable for
upstream packaging (it currently conflicts with the `Pcre` package).
(Mehdi Dogguy).
1.1.0 (05-Sep-2012):
* Add a basic Pcre wrapper around Re_perl for porting applications
using that API (Thomas Gazagnaire).
1.0.0 (01-Aug-2012):
* Initial public release.