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