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