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