Move to here from isnanl.h.
[gnulib.git] / NEWS
1 Important notes
2 ---------------
3
4 User visible incompatible changes
5 ---------------------------------
6
7 Date        Modules         Changes
8
9 2007-03-19  iconvme         The module is removed. Use module striconv instead:
10                             iconv_string -> str_iconv
11                             iconv_alloc -> str_cd_iconv (with reversed
12                                            arguments)
13
14 2007-03-15  list            The functions gl_list_create_empty and
15             array-list      gl_list_create now take an extra fourth argument.
16             carray-list     You can pass NULL.
17             linked-list
18             linkedhash-list
19             avltree-list
20             rbtree-list
21             avltreehash-list
22             rbtreehash-list
23
24 2007-03-15  oset            The function gl_oset_create_empty now takes a
25             array-oset      third argument. You can pass NULL.
26             avltree-oset
27             rbtree-oset
28
29 2007-03-13  vasprintf       The module now depends on stdio, so replace
30                                #include "vasprintf.h"
31                             with
32                                #include <stdio.h>
33
34 2007-03-12  des             The types and functions in lib/des.h have been
35             gc-des          renamed:
36
37                             des_ctx -> gl_des_ctx, tripledes_ctx -> gl_3des_ctx,
38                             des_is_weak_key -> gl_des_is_weak_key,
39                             des_setkey -> gl_des_setkey,
40                             des_makekey -> gl_des_makekey,
41                             des_ecb_crypt -> gl_des_ecb_crypt,
42                             des_ecb_encrypt -> gl_des_ecb_encrypt,
43                             des_ecb_decrypt -> gl_des_ecb_decrypt,
44                             tripledes_set2keys -> gl_3des_set2keys,
45                             tripledes_set3keys -> gl_3des_set3keys,
46                             tripledes_makekey -> gl_3des_makekey,
47                             tripledes_ecb_crypt -> gl_3des_ecb_crypt.
48
49                             Also consider using the "gc-des" buffer instead of
50                             using the "des" module directly.
51
52 2007-02-28  xreadlink       The module xreadlink was renamed to
53                             xreadlink-with-size. The function was renamed:
54                             xreadlink -> xreadlink_with_size.
55
56 2007-02-18  exit            The modules now depend on stdlib, so replace
57             mkdtemp           #include "exit.h"
58             mkstemp           #include "mkdtemp.h"
59                               #include "mkstemp.h"
60                             with
61                               #include <stdlib.h>
62
63 2007-01-26  strdup          The module now depends on string, so replace
64                               #include "strdup.h"
65                             with
66                               #include <string.h>
67
68 # This is for Emacs.
69 # Local Variables:
70 # indent-tabs-mode: nil
71 # whitespace-check-buffer-indent: nil
72 # End: