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