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