chiark / gitweb /
644a3c5faeac0a9e92c50716b632a711faf73a54
[chiark-tcl.git] / debian / changelog
1 chiark-tcl (1.0.2) unstable; urgency=low
2
3   New features:
4   * hbcrypto hash-{init,update,final} etc. for incremental hashing.
5
6   Bugfixes:
7   * Do not adns_cancel in the middle of adns_forallqueries.
8   * cdb: When cdbwr update writerecord fails, try to recover the
9     situation to sanity so we don't corrupt the log later; if this
10     fails, mark the cdb broken.
11   * strlen returns size_t, not int; fixed up everywhere relevant.
12     Closes #393970.  (Bug exists only where int and ssize_t differ.)
13   * Use correct errno value for error writing to new .main during compact.
14   * Do not coredump if fclose journal fails during compact.
15
16   Portability fixes:
17   * Remove unecessary assertion of val<=0xffffffffUL where uint32_t val;
18     Closes: #394039 (FTBFS due to unhelpful GCC warning).
19
20   Internal improvements:
21   * Add a few assertions about *_LLEN in adns.c.
22   * Comprehensive review of use of `int' and defence against overflow.
23
24  --
25
26 chiark-tcl (1.0.1) unstable; urgency=low
27
28   New features:
29   * adns: Provide txt RRs.
30   * dgram: New extension for datagram sockets; dgram-socket command.
31   * tuntap: New extension for tun/tap interfaces (currently, tun only).
32
33   Documentation, build and packaging fixes:
34   * Correct doc comment for supplying query options to adns asynch.
35   * Replace #include <tcl8.3/tcl.h> with <tcl.h> and in build system find
36     Tcl version and pass appropriate -I option.  Closes: #362806.
37   * Declare versioned build-dependency on libadns1-dev >= 1.2
38     since we need adns_init_logfn.  Closes: #382287.
39   * Declare build-dependency on libcdb-dev | tinycdb (<= 0.75)
40     since cdb.h etc. is in libcdb-dev off nowadays.  Closes: #387904.
41   * Pass -Wno-strict-aliasing.  The compiler is wrong.
42   * Do not run dpkg-shlibdeps on adns and nettle plugins.
43     This prevents them turning up in Depends - see the README.
44   * Use correct syntax for avoiding compressing doc/*/*.[ch].txt.
45   * Use correct variable name for cht_adnstcl_{queries,resolvers}
46     everywhere (prevents coredump accessing uninitialised version).
47   
48   Internal changes:
49   * New way of doing toplevels with tcmdifgen dispatch() primitive.
50
51  -- Ian Jackson <ian@davenant.greenend.org.uk>  Wed, 18 Oct 2006 17:05:03 +0100
52
53 chiark-tcl (1.0.0) unstable; urgency=low
54
55   * Initial release.  Extensions included:  adns cdb crypto hbytes
56     (of which cdb and adns will be needed for new SAUCE).
57
58  -- Ian Jackson <ian@davenant.greenend.org.uk>  Thu, 30 Mar 2006 18:34:51 +0100
59
60
61 # chiark-tcl - various Tcl bindings and extensions
62 # Copyright 2006 Ian Jackson
63 #
64 # This program is free software; you can redistribute it and/or
65 # modify it under the terms of the GNU General Public License as
66 # published by the Free Software Foundation; either version 2 of the
67 # License, or (at your option) any later version.
68 #
69 # This program is distributed in the hope that it will be useful, but
70 # WITHOUT ANY WARRANTY; without even the implied warranty of
71 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
72 # General Public License for more details.
73 #
74 # You should have received a copy of the GNU General Public License
75 # along with this library; if not, write to the Free Software
76 # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
77 # 02110-1301, USA.