dbc6422042b5c1a1ffc8018cb47a68f597aaa0d9
[gnulib.git] / NEWS
1 Important notes
2 ---------------
3
4 User visible incompatible changes
5 ---------------------------------
6
7 Date        Modules         Changes
8
9 2007-04-01  arcfour         Renamed to crypto/arcfour.
10             arctwo          Renamed to crypto/arctwo.
11             des             Renamed to crypto/des.
12             gc              Renamed to crypto/gc.
13             gc-arcfour      Renamed to crypto/gc-arcfour.
14             gc-arctwo       Renamed to crypto/gc-arctwo.
15             gc-des          Renamed to crypto/gc-des.
16             gc-hmac-md5     Renamed to crypto/gc-hmac-md5.
17             gc-hmac-sha1    Renamed to crypto/gc-hmac-sha1.
18             gc-md2          Renamed to crypto/gc-md2.
19             gc-md4          Renamed to crypto/gc-md4.
20             gc-md5          Renamed to crypto/gc-md5.
21             gc-pbkdf2-sha1  Renamed to crypto/gc-pbkdf2-sha1.
22             gc-random       Renamed to crypto/gc-random.
23             gc-rijndael     Renamed to crypto/gc-rijndael.
24             gc-sha1         Renamed to crypto/gc-sha1.
25             hmac-md5        Renamed to crypto/hmac-md5.
26             hmac-sha1       Renamed to crypto/hmac-sha1.
27             md2             Renamed to crypto/md2.
28             md4             Renamed to crypto/md4.
29             md5             Renamed to crypto/md5.
30             memxor          Renamed to crypto/memxor.
31             rijndael        Renamed to crypto/rijndael.
32             sha1            Renamed to crypto/sha1.
33
34 2007-03-27  vasprintf       The module now depends on stdio, so replace
35                                #include "vasprintf.h"
36                             with
37                                #include <stdio.h>
38
39 2007-03-24  tsearch         The include file is changed from "tsearch.h" to
40                             <search.h>.
41
42 2007-03-24  utf8-ucs4       The include file is changed from "utf8-ucs4.h"
43                             to "unistr.h".
44             utf8-ucs4-unsafe  The include file is changed from
45                             "utf8-ucs4-unsafe.h" to "unistr.h".
46             utf16-ucs4      The include file is changed from "utf16-ucs4.h"
47                             to "unistr.h".
48             utf16-ucs4-unsafe  The include file is changed from "utf16-ucs4.h"
49                             to "unistr.h".
50             ucs4-utf8       The include file is changed from "ucs4-utf8.h"
51                             to "unistr.h".
52             ucs4-utf16      The include file is changed from "ucs4-utf16.h"
53                             to "unistr.h".
54
55 2007-03-19  iconvme         The module is removed. Use module striconv instead:
56                             iconv_string -> str_iconv
57                             iconv_alloc -> str_cd_iconv (with reversed
58                                            arguments)
59
60 2007-03-15  list            The functions gl_list_create_empty and
61             array-list      gl_list_create now take an extra fourth argument.
62             carray-list     You can pass NULL.
63             linked-list
64             linkedhash-list
65             avltree-list
66             rbtree-list
67             avltreehash-list
68             rbtreehash-list
69
70 2007-03-15  oset            The function gl_oset_create_empty now takes a
71             array-oset      third argument. You can pass NULL.
72             avltree-oset
73             rbtree-oset
74
75 2007-03-12  des             The types and functions in lib/des.h have been
76             gc-des          renamed:
77
78                             des_ctx -> gl_des_ctx, tripledes_ctx -> gl_3des_ctx,
79                             des_is_weak_key -> gl_des_is_weak_key,
80                             des_setkey -> gl_des_setkey,
81                             des_makekey -> gl_des_makekey,
82                             des_ecb_crypt -> gl_des_ecb_crypt,
83                             des_ecb_encrypt -> gl_des_ecb_encrypt,
84                             des_ecb_decrypt -> gl_des_ecb_decrypt,
85                             tripledes_set2keys -> gl_3des_set2keys,
86                             tripledes_set3keys -> gl_3des_set3keys,
87                             tripledes_makekey -> gl_3des_makekey,
88                             tripledes_ecb_crypt -> gl_3des_ecb_crypt.
89
90                             Also consider using the "gc-des" buffer instead of
91                             using the "des" module directly.
92
93 2007-02-28  xreadlink       The module xreadlink was renamed to
94                             xreadlink-with-size. The function was renamed:
95                             xreadlink -> xreadlink_with_size.
96
97 2007-02-18  exit            The modules now depend on stdlib, so replace
98             mkdtemp           #include "exit.h"
99             mkstemp           #include "mkdtemp.h"
100                               #include "mkstemp.h"
101                             with
102                               #include <stdlib.h>
103
104 2007-01-26  strdup          The module now depends on string, so replace
105                               #include "strdup.h"
106                             with
107                               #include <string.h>
108
109 # This is for Emacs.
110 # Local Variables:
111 # indent-tabs-mode: nil
112 # whitespace-check-buffer-indent: nil
113 # End: