Fix win32 globbing (Closes: #1110).
[mpdm.git] / RELEASE_NOTES
blob5cc152b71bcbef5e7aa725e227d6e9f92ced50dd
1 MPDM Release Notes
2 ==================
4 1.0.7
5 -----
7  * Fixed a bug when processing backslashes in the substitution
8    string in sregex(), that made them dissappear if they were
9    not escaping an ampersand.
11 1.0.6
12 -----
14  * The environment is stored in a hash called ENV in mpdm_root().
15  * Under win32, the LANG environment variable is hand-built if
16    none is set.
17  * If the third argument to sregex() is a hash, the values can
18    now also be executable ones.
19  * New internal flag for values to mark them as deleted.
21 1.0.5
22 -----
24  * The mpdm_regex() function now accepts a new flag, `g', to match
25    globally; in this case, an array of matches are returned instead
26    of a string scalar.
27  * The mpdm_stat() function now returns a 14 element array, with a
28    newly #13 argument containing the canonicalized file name, if
29    the underlying system supports it.
30  * A bunch of embedded charset encoders have been implemented for
31    iso8859-1, utf-16 and utf-32 with or without BOM autodetection.
33 1.0.4
34 -----
36  * API Changes; const has been added wherever possible.
38 1.0.3
39 -----
41  * The hashing function has changed to a less accurate but faster one.
42  * There is a new, adaptive way of sweeping: if default_sweep if set
43    to a negative value (different from -1), it's used as a divisor
44    of the total count of values; this will be the number of values
45    that will be swept on each call to mpdm_sweep(0). This way, the
46    number of swept values depend on the total count.
47  * New functions mpdm_set_ival() and mpdm_set_rval().
48  * New function mpdm_get_filehandle().
50 1.0.2
51 -----
53  * Components of a compact symbol can be executable, apart from
54    hashes and arrays.
55  * mpdm_cmp() is optimized to return 0 when comparing the same value.
57 1.0.1
58 -----
60  * mpdm_cmp() now correctly compares NULL and NULL as equal.
61  * %c in mpdm_sprintf() now works with Unicode (wchar_t) characters.
62  * The substitution string in mpdm_sregex() now can include the
63    special character & to select the matched string. To include a
64    literal &, escape it with \.