File: changelog

package info (click to toggle)
an 1.2-5
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 188 kB
  • sloc: ansic: 624; makefile: 50; sh: 3
file content (178 lines) | stat: -rw-r--r-- 5,681 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
an (1.2-5) unstable; urgency=medium

  * Patch: replace icu-config with pkg-config (closes: #915380)
    Thanks: Hugh McMaster
  * Build-Depend on pkg-config
  * Build-Depend on debhelper-compat (= 11); drop d/compat
  * Bump Standards-Version to 4.2.1 (no changes needed)

 -- Paride Legovini <pl@ninthfloor.org>  Sat, 15 Dec 2018 12:52:09 +0000

an (1.2-4) unstable; urgency=medium

  * d/copyright: Upstream source moved to salsa
  * d/watch: Upstream moved to salsa; use ‘mode=git’
  * d/control: Add the Homepage field
  * Autopkgtest: trivial-anagram
  * Bump Standards-Version to 4.1.4 (no changes needed)

 -- Paride Legovini <pl@ninthfloor.org>  Wed, 27 Jun 2018 18:35:26 +0000

an (1.2-3) unstable; urgency=medium

  * Add upstream metadata file
  * Set debian-branch for 'gbp tag' in d/gbp.conf

 -- Paride Legovini <pl@ninthfloor.org>  Mon, 26 Mar 2018 22:23:35 +0000

an (1.2-2) unstable; urgency=medium

  * New maintainer (Closes: #889308)
  * Update to Standard-Version 4.1.3
  * Switch to https URLs
  * Hardened build

 -- Paride Legovini <pl@ninthfloor.org>  Fri, 09 Feb 2018 12:39:35 +0100

an (1.2-1) unstable; urgency=low

  * New upstream release
  * Fixes crash when dictionary contains "words" with no letters.
    (Closes: #753249)
  * Update to standards version: 3.9.5 (no changes).

 -- Paul Martin <pm@debian.org>  Wed, 02 Jul 2014 01:05:41 +0100

an (1.1-1) unstable; urgency=low

  * New upstream release
  * Fixes crash on certain inputs. Thanks to Mark Triggs for spotting this.
    (Closes: #710476)
  * Add watchfile for alioth source repository.
  * Upstream has taken patch for #674496.
  * Update to standards version: 3.9.4 (no changes).

 -- Paul Martin <pm@debian.org>  Mon, 03 Jun 2013 19:25:35 +0100

an (1.0-2) unstable; urgency=low

  * Modify Makefile to allow linking with --as-needed.
    Thanks to Stefano Rivera. (Closes: #674496)
  * Added pointers in debian/control to the "upstream" git repository.

 -- Paul Martin <pm@debian.org>  Mon, 28 May 2012 18:38:59 +0100

an (1.0-1) unstable; urgency=low

  * Complete "clean room" rewrite from scratch.
    + Understands UTF-8 and strips accents when comparing characters.
      (Closes: #546460)
    + Does not print duplicates, but may show up words in dictionary that
      appear multiple times with different capitalization. (Closes: #440121)
    + Does not print a space at the end of each line. (Closes: #561367)
  * Update to standards version: 3.9.3
  * debian/copyright now in machine readable format.
  * Source format 3.0 (quilt).
  * Build with debhelper 9.

 -- Paul Martin <pm@debian.org>  Wed, 16 May 2012 17:45:44 +0100

an (0.95-3.2) unstable; urgency=medium

  * Non-maintainer upload.
  * Urgency medium caused by RC bug fix
  * Recommend wbritish instead of wenglish (Closes: #564059)
  * Fix some minor lintian warnings:
    - Add ${misc:Depends} to depends
    - Don't ignore errors in make clean
    - Fix FSF address

 -- Alexander Reichle-Schmehl <tolimar@debian.org>  Wed, 20 Jan 2010 11:04:38 +0100

an (0.95-3.1) unstable; urgency=low

  * Non-maintainer upload to delayed
  * Incorporate speedup and fixes patches
    from Phil Carmody <thefatphil@yahoo.co.uk>,
    (Closes: #234744)

 -- Riku Voipio <riku.voipio@iki.fi>  Sun, 18 Jan 2009 23:18:05 +0200

an (0.95-3) unstable; urgency=low

  * Bugfixes:
    - Fix manpage to refer to /usr/share/dict/words instead of
      /usr/dict/words (Closes: #249362)
  * Standards-version: 3.6.1
  * Building with debhelper 4

 -- Paul Martin <pm@debian.org>  Wed, 19 May 2004 17:38:41 +0100

an (0.95-2) unstable; urgency=low

  * Bugfix: (Closes: #164514)
    - Made all casts into letterpos[] be "unsigned char". This is a
      related bug to the one fixed in #145848.

 -- Paul Martin <pm@debian.org>  Sun, 13 Oct 2002 03:11:36 +0100

an (0.95-1) unstable; urgency=low

  * Bugfixes: (Closes: #145848)
    - Made all chars unsigned (casting them to int caused accented
      characters to return negative array indexes).
    - Fixed initialisation of letter_mask to use bitmask_t not int.
    - Fixed check_dict() to search for next unique let_hash entry
      instead of assuming that the next entry will be unique.
  * Added assertion in check_dict() to check for PPC problem, reported
    by Gabriel L Somlo. This may be fixed by the other bugfixes above.

 -- Paul Martin <pm@debian.org>  Mon,  6 May 2002 15:22:48 +0100

an (0.94-1) unstable; urgency=low

  * Major rewrite to work with languages other than English.
    (Closes: #13809)
  * Uses debhelper 3.
  * Standards-Version 3.5.4.

 -- Paul Martin <pm@debian.org>  Tue, 15 May 2001 16:05:59 +0100

an (0.93-2) unstable; urgency=low

  * New Maintainer.
  * Thanks to NMU, closes: #27296, #27297, #35581, #38510,
    #38996, #40440
  * Updated to Standards-Version 3.2.1.
  * Converted to debhelper.

 -- Paul Martin <pm@debian.org>  Mon, 13 Nov 2000 22:53:49 +0000

an (0.93-1.2) unstable; urgency=low

  * NMU for release critical bug
  * Changed location of wordlist to /usr/share/dict/words
    Bug #27296, #35581, #38510, #38996, #40440
  * Also changed this in the description
  * Recommends: wordlist, fixes #27297
  * Use correct name for changelog (lintian)

 -- Martin Bialasinski <martinb@debian.org>  Fri, 16 Jul 1999 23:56:33 +0200

an (0.93-1.1) unstable; urgency=low

  * Non-maintainer release.
  * Libc6 compile.
  * Change architecture from i386 to any. (#13690)

 -- Martin Mitchell <martin@debian.org>  Sun,  9 Nov 1997 03:52:54 +1100

an (0.93-1) unstable; urgency=low

  * First Debian Release

 -- Richard Jones <richard@deep-thought.org>  Sun, 9 Feb 1997 01:46:01 +1100

Local variables:
mode: debian-changelog
End: