chiark / gitweb /
changelog: finalise 2.14
[dgit.git] / debian / changelog
1 dgit (2.14) unstable; urgency=critical
2
3   CRITICAL BUGFIX:
4   * Do not generate bogus commits with --overwrite or import-dsc.
5     Closes:#849041.
6
7   Test suite:
8   * Run a lot of git-fsck.
9
10  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Wed, 04 Jan 2017 22:52:55 +0000
11
12 dgit (2.13) unstable; urgency=high
13
14   Changed behaviour:
15   * quilt fixup: Permit creation of patches which delete files, by psssing
16     --include-removal to dpkg-source, and tolerating it when we do our
17     quilt fixup analysis.  dpkg-source has supported this since at least
18     stretch.  Closes:#848901.
19
20   Error messages:
21   * Improve "cannot represent change" message: print the git old and new
22     modes too.
23
24   Bugfix:
25   * Import: Switch back to unpa branch on patch import iterations.
26     In particular, do not fail utterly if dpkg-source and gbp disagree.
27     Closes:#848843.
28
29   Documentation [Sean Whitton]:
30   * dgit-maint-gbp(7): Remove reference to closed bug.  Closes:#848725.
31   * dgit-sponsorship(7): Update in light of fixed #844129.  Closes:#848789.
32
33  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Wed, 21 Dec 2016 01:32:41 +0000
34
35 dgit (2.12) unstable; urgency=high
36
37   Changed behaviours:
38   * By default, generate a DEP-14 tag as well as a dgit archive/*
39     tag, even in non-split-view quilt modes.  Closes:#844129.
40   * Version tags mangling: Protect dots, as per proposed update to DEP-14.
41
42   Documentation:
43   * dgit-maint-merge(7): Explain how to change to this workflow
44     from an existing git workflow.  [Sean Whitton]  Closes:#847807.
45   * dgit-maint-native(7): Clarify that we mean native source format.
46     [Phil Hands]  Closes:#847987.
47
48   Error messages:
49   * Slightly better message when .dsc not found.  Apropos of #844128.
50   * Give better advice if .dsc/.changes signing fails: if no changes
51     are needed to the package, user may indeed just debsign and dput.
52     Closes:#844131.
53   * Produce better error reporting when absurd git wrapper fails
54     on a patch during .dsc import.  Apropos of #848391.
55
56   Bugfixes:
57   * If we cannot hardlink origs into our extraction area, use symlinks
58     instead.  Closes:#844570.
59   * Suppress some leftover debugging output from import-dsc.
60     Closes:#847658.
61   * Do not fail when cloning a package containing dangling symlinks.
62     Closes:#848512.
63   * Do not fail to import a .dsc containing patches which patch files
64     multiple times, due to #848611.  Closes:#848391.
65   * Do not fail to import a .dsc containing patches to .git/ (!)
66   * infra: dgit-repos-policy-debian which broke due to recent git setting
67     GIT_ALTERNATE_OBJECT_DIRECTORIES in the pre-receive-hook.
68     (fixes test suite regression in stretch).
69
70   Test suite:
71   * Provide and use stunt lintian and debuild, to avoid lintian
72     complaining about our stupid test packages.
73     (fixes test suite regression in stretch).
74
75  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Mon, 19 Dec 2016 17:35:18 +0000
76
77 dgit (2.11) unstable; urgency=medium
78
79   Documentation:
80   * dgit-user(7): Better explanation of combined suites (comma syntax).
81     Thanks to Sean Whitton for review and suggestions.
82   * dgit(1), dgit(7): Better reference docs for combined suites.
83   * dgit(1): Improve formatting of rpush section.
84
85   Test suite:
86   * Replace make in Test-Depends with build-essential.  Most of the tests
87     do in fact run dpkg-buildpackage which bombs out if build-essential is
88     missing.
89
90  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Tue, 08 Nov 2016 22:41:29 +0000
91
92 dgit (2.10) unstable; urgency=medium
93
94   New features:
95   * Support the Debian *-security suites.
96   * New comma-separated multiple-suite merging facility (readonly),
97     so that users can easily track "jessie, or jessie-security".
98   * dgit-user(7): Suggest `dgit clone P jessie,-security'.
99
100   Bugfixes:
101   * Cope when an orig tarball is a tarbomb.  Ie, if it contains
102     other than one single directory toplevel.  Closes:#843422.
103   * Actually honour the branch name, if we are on dgit branch, to specify
104     the suite, as documented in the manpage.
105   * When cloning a distro which has no git server, correctly leave
106     the user on the local dgit branch, not on `master'.
107   * Fix an unconditional print that was supposed to be a printdebug:
108       origs <blah>.orig.tar.gz f.same=1 #f._differ=-1
109   * Print a slightly better message if .git found in orig tarball(s).
110
111   Test suite:
112   * Test suite: Add fakeroot and make to Test-Depends.  These aren't
113     necessarily pulled in by anything else.  (dpkg-dev Recommends
114     build-essential.  But we don't actually need build-essential.)
115
116  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Tue, 08 Nov 2016 01:08:51 +0000
117
118 dgit (2.9) unstable; urgency=medium
119
120   New features:
121   * During push, automatically calculate which .origs are required,
122     so user never needs [--ch:]-sa or [--ch:]-sd.  Closes:#829116.
123   * New import-dsc feature.
124   * New option --dgit-view-save= for split view quilt modes.
125     In particular, means that the output of a split view quilt-fixup
126     is left somewhere useful.
127   * dgit clone: Set timestamps in cloned tree to a single unified time.
128     This makes it less likely that the user will trip over any
129     timestamp-dependent FTBFS bugs (eg #842452).
130   * Support dgit --delayed= push (with a warning in the manpage
131     about possible skew).
132   * dgit gbp-build will arrange to let gbp buildpackage generate
133     .orig tarballs if it seems applicable.  Closes:#841094.
134
135   Documentation improvements:
136   * dgit-*(7).  Many new tutorial manpages, several written and many
137     improved by Sean Whitton.
138   * dgit(7): Substantial updates, including documenting split view.
139   * dgit(1): Better cross-references.
140   * dgit(1): Remove obsolete workflow information.
141   * dgit(1): Improved BUGS section.
142   * Fix changelog entry for SIGPIPE to correctly mention
143     Closes:#841090.
144
145   Bugfixes:
146   * Split brain mode: Fix --new.  Closes:#842577.
147   * Properly look for .origs etc. in .., fetching them less often.
148     Closes:#842386.
149   * Reject `dgit pull' in split view quilt modes, to avoid
150     creating unfortunate wreckage on non-dgit-view branches.
151     Closes:#842608.
152   * Cope when cloning suite which doesn't receive uploads,
153     like testing.  Closes:#842621.
154   * Properly fetch all archive dgit view tags, as we intended.
155   * Actually provide a -p (--package=) option (!)
156
157   Test suite fixes:
158   * Test suite: Explicitly configure user.name and user.email, so
159     that tests work when environment doesn't have defaults.
160     Closes:#842279 (I hope).
161
162  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Mon, 31 Oct 2016 12:47:18 +0000
163
164 dgit (2.8) unstable; urgency=medium
165
166   * When in split build mode for `gbp-build' or `build', run
167     mergechanges as is required.  Closes:#841990.
168   * Test suite: build-mode-*: Check that right .changes comes out
169     (detects #841990).
170   * Defend against debian/patches/series being an unusual object, in case
171     dpkg-source doesn't, in absurd git-apply fallback.
172
173  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Tue, 25 Oct 2016 17:29:23 +0100
174
175 dgit (2.7) unstable; urgency=medium
176
177   Absurd bugfix for serious bug:
178   * Work around `git-apply' problems (eg #841865, #829067) exposed by
179     `gbp pq import' (#841866) by sometimes falling back to an emulation of
180     git-apply in terms of dpkg-source --before-build.  Closes:#841867.
181
182   Minor changes:
183   * dgit(1): Reorder the options, moving more important ones earlier.
184   * dgit(1): Some more info about --deliberately.
185   * Provide various --force-something options.  Please don't use them.
186
187  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Mon, 24 Oct 2016 02:37:28 +0100
188
189 dgit (2.6) unstable; urgency=medium
190
191   Fixes to HTTP handling:
192   * Check for non-2xx HTTP status codes from ftpmaster api server.
193   * Always honour --curl= and --curl:.
194
195  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 23 Oct 2016 14:57:22 +0100
196
197 dgit (2.5) unstable; urgency=low
198
199   Substantive changes:
200   * Do not crash in split brain quilt modes when the two brains are
201     actually identical.  (Eg --quilt=gbp with no patches.)  Closes:#841770.
202   * Switch to new archive/ tag format by default, even in
203     non-split-brain mode.
204   * Provide --gbp and --dpm as aliases for --quilt=gbp and --quilt=dpm.
205
206   Documentation:
207   * dgit-maint-merge(7): New tutorial manpage from Sean Whitton.
208
209   Test suite:
210   * Introduce setup/gnupg, to help work around gnupg2 bug #841143
211     and improve performance by amortising gnupg migration cost.
212   * Various bugfixes.
213
214  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 23 Oct 2016 13:20:23 +0100
215
216 dgit (2.4) unstable; urgency=low
217
218   Bugfixes:
219   * split brain cache: Fix a wrong implicit reference to $_.
220     Closes:#841383.
221   * split brain cache: Make sure to write reflog entries for cache updates
222     even if the eventual tree (and therefore commit) is the same.
223     Otherwise, after updating dgit, the cache might have the right answer
224     but not be refreshed even by a build.
225   * dgit gbp-build: No longer invent a --git-debian-branch option.
226     Usually the user is a maintainer using split brain, and we should rely
227     on their own gbp configuration to specify the right check.
228     Closes:#841100.
229
230   Minor docs fix:
231   * dgit(1): Document which --ch: options are a good idea.
232
233  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 20 Oct 2016 16:31:54 +0100
234
235 dgit (2.3) unstable; urgency=low
236
237   * With --overwrite, do not check all sorts of tags (which may
238     not exist, or might contain wrong things).  Closes:#841101.
239   * When generating pseudomerge in quilt split brain mode due to
240     --overwrite, actually include the version number in the commit
241     message.
242
243  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Tue, 18 Oct 2016 01:58:05 +0100
244
245 dgit (2.2) unstable; urgency=low
246
247   * Fix config relating to Debian to actually make split brain mode
248     work.  Closes:#841085.
249   * Detect SIGPIPE (and SIGCHLD) being blocked or ignored.
250     Closes:#841090.
251
252  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Mon, 17 Oct 2016 17:31:18 +0100
253
254 dgit (2.1) unstable; urgency=low
255
256   * Do not crash due in clone to failure to handle dpkg-parsechangelog
257     SIGPIPE.  Closes:#840989.  Avoids:
258        dgit: failed command: dpkg-parsechangelog --format rfc822 --all
259        dgit: subprocess died due to fatal signal PIPE
260   * git- prefixes: Fix some occurrences of `git-foo' in infrastructure,
261     messages, and test suite.  Filter out .../git-core from PATH in
262     test suite so that we catch future occurrences.
263
264  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 16 Oct 2016 19:05:14 +0100
265
266 dgit (2.0) unstable; urgency=low
267
268   Incompatible change:
269   * dgit sbuild: does not pass -A to sbuild.  Consequently the default
270     build is now simply sbuild's default.  With older sbuilds it was
271     possible to override dgit's -A by passing another option.  But this
272     has been changed recently and now this default setting is very awkward
273     to change for the dgit user.
274   * dgit gbp-build: Make --quilt=gbp the default.  (See below.)
275   * New tag format (for dgit view) archive/debian/VERSION.
276
277   Major new feature:
278   * --quilt=gbp, --quilt=dpm, --quilt=unpacked: Introduce facility for
279     split view (dgit/mainiainer view), to improve compatibility with some
280     workflow tools.
281
282   New checks and improved behaviours in dgit:
283   * When running dpkg-buildpackage, cope if user specified -g or -G.
284   * dgit sbuild: check that the set of .changes files found is as we
285     expect, before calling mergechanges.  Re:#800060.
286   * dgit sbuild: Rename the used-up .changes files to `.inmulti' to
287     avoid accidental use of the wrong one (by software, or by users).
288   * dgit sbuild: Check that the binary .changes file doesn't contain a
289     .dsc.
290   * Introduce --rm-old-changes to delete previous builds' changes files.
291   * Remove any pre-existing _source.changes file before building source,
292     as a safety check.
293   * No longer tolerate a multitude of .changes files when doing push.
294     Instead, insist on a single one.  Closes:#800110.
295   * dgit sbuild no longer deletes extranious .changes files; instead
296     we rely on --rm-old-changes, or failing that, fail early.
297   * When doing quilt linearisation, treat upstream .gitignores not
298     in the toplevel the same way we treat ones in the toplevel.
299   * When automatically generating quilt patch, honour GIT_COMMITTER_DATE
300     for filename creation (makes filename deterministic in test suite).
301   * New --overwrite option, replaces need to for user to use
302     git merge -s ours.  Closes:#838718.
303   * When generating quilt patches from git commits, make patches that
304     look quite like git-format-patch output (rather than strange things
305     based on an obselete interpretation of DEP-3).
306   * When generating quilt patches from git commits, honour (and strip)
307     any Gbp-Pq headers (that we understand).
308   * Several dgit-generated commits now have slightly better annotations
309     from dgit about what it was doing.
310   * Before committing to push, check that .dsc and .changes correspond.
311     Closes:#800060.
312   * Better error message if non-split-brain patch stack no longer
313     applies (due to new upstream version, or user messing with it).
314     Closes:#833025.
315   * Better error message if HEAD contains changes unrepresentable
316     by `3.0 (quilt)'.  Closes:#834618.
317   * Much better error message when HEAD and .dsc do not match.
318     Closes:#809516.
319
320   Infrastructure:
321   * dgit-repos-policy-debian: Better error handling.
322   * dgit-repos-policy-debian.: fix git-cat-file-handling with multiple
323     taints in db (!).
324   * dgit-infrastructure has, and uses, its own copies of the perl modules.
325     This avoids introducing a versioned dependency between dgit and
326     dgit-infrastructure (and also makes it easier to test cross-version
327     compatibility).
328
329   Documentation:
330   * Document the dgit-distro.DISTRO.quilt-mode config setting.
331   * Clarify the --clean= options' documentation.  Closes:#800054.
332   * Discourage use of the --PROGRAM:OPTION escape hatch.  (Apropos
333     of various bug reports including #800060 and #833025.)
334   * Document the expected form of HEAD for each --quilt= mode.
335
336   Bugfixes:
337   * When cleaning up after failed clone, stat the to-be-cleaned-up
338     directory before running rmtree on it.  Closes:#796773.
339   * Do not call "warn" on failure of cleanup handler in END block
340     (since warn has been made fatal and aborts the cleanup chain).
341   * Print better error message (with `fail' rather than `die') if
342     `dgit clone' cannot create the destination directory.
343   * Properly substitute $changesfile in one of the `You can retry'
344     messages.  Closes:#800078.
345   * Pass --ch:* and -v options to dpkg-buildpackage when building
346     source.  Fixes bad Perl poetry syntax.  Closes:#829121.
347   * When synthesing a commit from a .dsc from the archive, stop
348     internal git reset from printing a confusing message about HEAD.
349   * Turn off git gc in the private working areas.
350   * Do not fail to do some important quilt processing in some
351     --quilt modes.
352   * Fix two calls to chdir without proper error checking.
353   * Fix a couple of bugs in error reporting.
354   * Fix several bugs in .orig detection/recognition.
355   * Tidy up refs/dgit-fetch/ after dgit fetch (if successful).
356   * Fix handling of in-archive copies.
357   * Don't break if user has push.followTags=true.  Closes:#827878.
358   * Arrange for the special dgit remote to be skipped by git fetch --all
359     etc.  And no longer configure a fetch spec, since it won't work
360     anyway.  Closes:#827892.
361   * Allow local git config options to override user-global ones,
362     as is proper.  Closes:#835858.
363   * When generating patch filenames from titles, first transliterate
364     them (lossily) to ascii.  Closes:#834807.
365
366   Test suite:
367   * When sbuild fails, do not crash due to sed not finding the log
368     file.  Instead, simply tolerate the absence of the log file.
369   * Put --no-arch-all in build-modes-sbuild act, not only its real_act.
370     Cosmetic change only.
371   * Set GIT_COMMITTER_DATE and GIT_AUTHOR_DATE and increment them
372     explicitly in drs-push-rejects test.  This avoids date dependencies
373     which can cause that test to fail on fast computers.
374   * Remove some spurios .debs from the example_1.0.tar.
375   * Increase sqlite_busy_timeout in debpolicy-dbretry, because old
376     zealot is very slow and we need to give the other processes time
377     to rollback and release the lock.
378   * Test quilt single-debian-patch.
379   * Provide `tartree-edit gitfetchinfo' etc. to help with comparing
380     different test case git working tree tarballs.
381   * Test dgit-repos-policy-debian with multiple (identical, as it happens)
382     existing taints.
383   * Provide better log output for certain failures.
384   * Many new tests (especially for new functionality).
385   * Add missing debhelper (>=8) to test suite's global Depends.
386   * tstunt arrangements: Fix mishandling of PERLLIB, etc.
387   * tstunt-parsechangelog: Produce Timestamp field (like official one
388     does, now).
389   * Do not fail when git requires --allow-unrelated-histories.
390
391  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 16 Oct 2016 12:12:50 +0100
392
393 dgit (1.4) unstable; urgency=high
394
395   Bugfixes:
396   * Unbreak --dry-run (`exiting subroutine via next', broken in
397     ac221d67, bug released in 0.22).
398   * When running git-add in commit-quilty-patch, properly escape
399     filenames (which git-add treats as glob patterns).
400   * When running git-add in commit-quilty-patch, use -f and sometimes -A,
401     so as to avoid being broken by any .gitignore, etc.
402   * When quilt linearisation fails, print the right information in
403     the error message.  (This has been broken forever.)
404   * Cope properly with `3.0 (quilt)' with single-debian-patch.
405     Closes:#796016.  (Still does not work with wheezy's dpkg-source, so
406     no test case yet.)
407   * With dgit sbuild, pass our -d before the user's arguments, so that
408     the user can override it.  Closes:#796019.
409
410   New checks and improved behaviours:
411   * Detect and reject git trees containing debian/source/local-options
412     or debian/source/local-patch-header.
413   * In --dry-run mode, _do_ actually run dpkg-source --commit so that we
414     actually do construct the quilt fixup commit; instead, honour
415     --dry-run by avoiding pulling it back to your HEAD.
416   * quilt-fixup checks that the git tree is clean, as for build-prep.
417
418   Documentation:
419   * In dgit(7), discuss binaries and documentation present in upstream but
420     removed by rules clean.
421
422   Test suite:
423   * Run quilt-fixup with -wgf in distropatches-reject,
424     so that we don't need build-depends.
425
426  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 22 Aug 2015 15:31:02 +0100
427
428 dgit (1.3) unstable; urgency=high
429
430   Important bugfixes:
431   * In option parser test `@ARGV' not `length @ARGV'.  Closes:#795710.
432   * Properly quote package name when constructing regexp in
433     complete_file_from_dsc.  Closes:#795736.  Also, grep the code for
434     likely similar problems elsewhere and improve a (harmless) instance in
435     dgit-repos-server.
436
437   Other improvements:
438   * If a .orig in .. is a symlink, hardlink the link target into our
439     private unpack directory, rather than the link itself (since latter
440     won't work if the symlink is relative).  Closes:#795665.
441   * Test suite: Fix t-restriction-x-dgit-schroot-build in non-adt mode.
442   * Infrastructure: Improve an error message in dgit-repos-policy-debian.
443
444  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 16 Aug 2015 17:51:02 +0100
445
446 dgit (1.2) unstable; urgency=high
447
448   Improvements:
449   * Honour *.clean-mode configuration setting for --clean= mode.
450   * No longer require option values to be cuddled: support `--opt val' and
451     `-o val'.  Closes:#763332.
452
453   Manpages:
454   * Fix typos.
455   * Document that tags are in DEP-14 format, and that they
456     are used for authenticating pushes.
457   * Correct cross-reference to point to browse.d.d.o.
458   * Move dgit.default.* to main CONFIGURATION section.
459
460   Administrivia:
461   * Add missing close of #793060 to changelog for version 1.1.
462
463  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Fri, 14 Aug 2015 18:27:20 +0100
464
465 dgit (1.1) unstable; urgency=medium
466
467   Bugfixes:
468   * When source package contains things called .git (even files, and even
469     in subdirectories), remove them.  Closes:#793671.
470   * Work around curl -sS -I printing `HTTP/1.0 200 Connection established'
471     before the actual header, so dgit works with https_proxy set (!)
472   * --new is needed for read access to packages in NEW, too.  Document
473     this, and make it work properly.
474   * Work around #793471 (madness with $SIG{__WARN__} and Perl's system
475     builtin): move $SIG{} setting into setup_sigwarn in Dgit.pm, and
476     check getppid.
477   * When invoking git-buildpackage via dgit gbp-build, consider our
478     command line arguments when massaging the dpkg-buildpackage arguments,
479     so that we don't end up giving dpkg-buildpackage contradictory
480     instructions.
481   * Cope with new git-buildpackage which provides gbp, rather than the
482     eponymous command, on PATH.
483
484   Configurability:
485   * Honour dgit-distros.DISTRO.cmd-CMD and .opts-CMD.  Closes:#793427.
486   * Make configuration able to prevent dpkg-mergechangelogs setup.
487   * Provide dgit setup-new-tree (like dpkg-setup-mergechangelogs
488     but only does it if not disabled in config).
489   * Set up git user.email and user.name from distro access config
490     or DEBEMAIL/DEBFULLNAME.  Closes:#793410.
491   * When key to use not specified any other way, use the debian/changelog
492     trailer line.  Closes:#793423.
493   * Honour --git= (mostly).
494
495   Documentation:
496   * Fix some manpage typos.  [ Richard Hartmann ]
497   * Manpage said that --clean=check was -wn but that is --clean=none;
498     correctly document that --clean=check is actually -wc.
499   * Document that up to -DDDD (not just -DD) is meaningfully different.
500   * Document that -cname=value applies only for this run.
501   * Improve manpage comment about defining a new distro.
502   * Document that --quilt=linear is the default for Debian.
503   * Fix a formatting problem in --build-products-dir= doc.
504   * In manpage, do not seem to imply that NMU should be of only one
505     new commit.
506   * Qualify to Debian the manpage comment about how to do NMU.
507   * In discussion on how to start using dgit when already using git, do
508     not imply/assume that existing git history will have identical trees
509     to dgit history.
510   * Remove stray sentence in config section of manpage.
511   * Manpage: Clarify wording of readonly config.
512   * Manpage: Better cross-references for -k and keyid.
513   * dgit(7): No longer say that dgit-repos lives on Alioth.
514
515   Improvements:
516   * Introduce more sophisticated protocol negotiation for rpush.
517   * Do not quote `:' in shellquote.
518   * Print a supplementary message when push fails, giving advice to
519     the user about how to retry.  Closes:#793144.
520   * Slurp in entire git config, for better performance.
521   * Rename `git-build' operation to `gbp-build' to make it clearer what
522     it's for.  Keep the old name as an alias.
523   * Show `dgit sbuild' in usage message.
524   * When we are using dpkg-buildpackage to clean before using it to also
525     do the build, let it do its cleaning thing as part of its run, rather
526     than running it twice.  When we are _not_ supposed to be using
527     dpkg-buildpackage to clean, but we are running it to do the build,
528     pass -nc.  Closes:#793060.
529   * Also suppress spurious runs of the clean target when building using
530     git-buildpackage.
531   * When exec fails, always print the program name in the error message.
532
533   Infrastructure:
534   * Infrastructure: Get mirroring right for fresh repos of existing
535     packages (!)
536
537   Packaging, cleanups, debugging and test suite:
538   * Fix Vcs-Git and Vcs-Browse to refer to chiark.  (The dgit-repos on
539     alioth aren't suitable right now because the master there can
540     currently only be updated with an actual upload, ie dgit push.)
541   * Make warnings fatal in dpkg-repos-admin-debian, dgit-ssh-dispatch
542     (using setup_sigwarn).
543   * tstunt/dpkg-parsechangelog: Make warnings fatal (directly).
544   * tstunt/dpkg-parsechangelog: Do not complain if PERLLIB is empty.
545   * Test suite: Honour DGIT_TEST_DEBUG=''.
546   * With -DDDD, print out all gitcfg references (copious!)
547   * Fix a debug message in the obsolete sshpsql archive access driver.
548   * Test suite: More automatic enumeration of tests.
549   * Test suite: Provide tests which check that all our various build
550     operations run the right targets as expected (ie, that we are massaging
551     the arguments to dpkg-buildpackage, and suppressing our clean target,
552     etc., correctly).
553
554  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Mon, 27 Jul 2015 16:34:31 +0100
555
556 dgit (1.0) unstable; urgency=medium
557
558   Improvements:
559   * Switch to new production git repositories for reading.
560     (this can no longer divert to alioth).  Public readonly access
561     now works.  Closes:#791447.
562   * Memoise git config lookups (big speedup!)
563   * Provide -wdd aka --clean=dpkg-source-d.  Closes:#792433.
564   * Provide -wc aka --clean=check.
565
566   Manpage updates:
567   * Remove some obsolete caveats from BUGS.
568   * Reorganise and complete the configuration section.
569   * Remove obselete comment about DMs not being able to push.
570     We have, for now, a way to add keys manually.  Closes:#720173.
571
572   Access machinery:
573   * Remove configuration relating to alioth.
574   * Provide for different access mechanisms when pushing.
575   * Provide for configurable git url suffix.
576   * Allow git-url to be '' to force fallback to git-proto etc.
577   * Provide for checking git presence via http[s].
578   * Do some quoting on debug output (needed if the server might not
579     be trustworthy and might send us bad stuff).
580   * Talk to push.dgit.debian.org, rather than the .debian.net alias.
581
582   Infrastructure:
583   * Provide for mirroring git updates to a different server.
584   * Provide cgit-regen-config command for cgi-grnet-01.
585   * Make dgit-ssh-dispatch not spew (harmless) warnings if caller
586     tries for a shell session (ie SSH_ORIGINAL_COMMAND not set).
587
588   Cleanups:
589   * Remove an obsolete comment from the code.
590   * Improve an error message from dgit-repos-policy-debian.
591   * Test suite: Break out t-make-hook-link.
592   * Fix a manpage typo.
593
594  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 19 Jul 2015 22:15:53 +0100
595
596 dgit (0.30) unstable; urgency=high
597
598   INCOMPATIBLE CHANGES:
599
600   * Client uses new infrastructure:
601     - Check for new dgit git service on dgit-git.debian.net (ie
602       gideon.debian.org), with transition plan based on diversion feature.
603       Closes:#720172.
604     - Old versions of dgit will stop working when the server-side handle is
605       pulled.
606
607   * dgit git trees no longer contain .pc for format `3.0 (quilt)' source
608     packages.  Closes:#764606.
609     - It is deleted whenever we find it.
610     - Older versions of dgit will choke on trees without .pc.
611     - (When doing quilt fixup, we recreate a suitable .pc in a temporary
612       directory so that we can do dpkg-source --comit.)
613
614   * All users are urged to upgrade ASAP.
615
616   Other significant improvements:
617
618   * When generating quilt patches, try to linearise the git history into a
619     series of individual new patches for debian/patches.  Closes:#770710.
620
621   * When receiving a push with dgit-repos-server, update the server's
622     refs/heads/master if we are pushing to what the distro regards as a
623     relevant branch, and the push would ff master.  Closes:#728209.
624
625   * For non-Debian distros, distro version release tags contain distro
626     name a la DEP-14 (rather than hardcoding `debian/').
627
628   * Set up a merge driver for debian/changelog.  Closes:#769291.
629
630   * --clean=git and --clean=none cause dgit to pass -nc to
631     dpkg-buildpackage, suppressing calls to the package's clean target.
632     Also, expand the documentation in this area slightly.  Closes:#768590.
633
634   * Provide --clean=git-ff (aka -wgf), which is useful for dgit itself (!)
635
636   Minor improvements:
637
638   * Reduce some noise output and improve the clarity of some messages.
639   * Be more careful about tag updates during fetch: only update tags
640     referring to uploads to distro we are trying to fetch from.
641   * Change realpath dependency to `coreutils (>= 8.23-1~) | realpath'
642     (Closes:#786955.)
643
644   Bugfixes:
645
646   * Fix handling of rmadison-based and gitless distros (e.g., Ubuntu).
647   * Add missing `gpgv' to test dependencies in debian/tests/control.
648   * Strip `-b <branch>' from contents of Vcs-Git header, when setting up
649     the vcs-git remote.  Closes:#759374.
650   * Do not offer wget as an alternative dependency to curl.  We always
651     unconditionally invoke curl and have no code to use wget.
652     Closes:#760805.
653   * Complain about lack of cuddled values for value-taking single-letter
654     options, rather than thinking the user meat an empty value.
655     Closes:#763332.
656   * Reject (rather than ignoring) further options merged witth -wn, -wg,
657     -wd.
658   * Fix inaccurate error message when archive's git hash is not an
659     ancestor of git repo's git hash.
660   * Detect and bomb out on vendor-specific `3.0 (quilt)' patch series.
661   * Fix the rules clean target to remove test results and output.
662
663   Documentation improvements:
664
665   * Break out dgit(7) from dgit(1).
666   * Provide example workflow for dgit rpush.  Closes:#763334.
667     (Also part of the fix for #768470.)
668   * Document that dgit repos are cloneable with git, in dgit(1)
669     section MODEL.  [Andreas Barth.]  Closes:#768470.
670   * Better documentation for quilt series handling.
671   * Document under `dgit push' that it is best to build with dgit too.
672     Closes:#763333.
673   * Other minor clarifications and improvements.
674
675   Behind-the-scenes work:
676
677   * Use ftpmasterapi archive query method.
678     (Closes:#727702.  Also partly obsoletes #768470.)
679   * New dgit-infrastructure binary package containing dgit-repos-server et
680     al.  Client users probably don't want this stuff.  Also, it provides a
681     convenient way to publish the dependencies.
682   * Many many bugfixes to the server side (dpkg-repos-server et al.).
683   * Add :..; prefix to ssh remote commands, for the benefit of future
684     forced command wrappers.  Implicitly, this defines a new ssh-based
685     command protocol.  Closes:#720174, #720175.
686   * Distro access configuration handling changes (should not be noticeable
687     to most users).
688   * In places, significant restructuring or tidying up.
689   * Turn all perl warnings into errors using $SIG{__WARN__}.
690
691  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 05 Jul 2015 01:34:55 +0100
692
693 dgit (0.22.1) unstable; urgency=high
694
695   * Use Dpkg::Version::version_compare everywhere, not
696     Dpkg::Version::version_compare_string.  The latter is entirely wrong,
697     meaning that dgit would get many version comparisons wrong.
698     Closes:#768038.
699
700  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Tue, 04 Nov 2014 12:46:40 +0000
701
702 dgit (0.22) unstable; urgency=medium
703
704   Bugfixes:
705   * Clone removes destination directory on error.  Closes:#736153.
706   * Work with wheezy-backports (and keep squeeze-backports working too).
707     Closes:#736524.
708   * Work in read-only no-git-history mode with Ubuntu.  You still have
709     to pass -dubuntu.  Closes:#751781.
710   * Use mirror.ftp-master.debian.org DNS alias rather than coccia.
711     Closes:#752602.
712   * Check hashes of files ourselves rather than running dget to
713     re-retreive the .dsc.
714   * Check SHA-256 of .dsc against hash from archive_query (ie projectb)
715     rather than letting dpkg-source do a signature verification.
716     Closes:#737619.  Closes:#737625.
717   * Treat .dsc as bytes, just like everything else, rather than letting
718     HTTP::Message convert it to a Perl unicode string which the rest of
719     the program mishandles.  Closes:#738536.
720
721   Minor improvements:
722   * Include canonicalised suite name in signed tag message.
723   * Mention cross-version dgit rpush incompatibility in manpage.
724   * Check for rpush protocol version incompatibility and crash early
725     if incompatible.
726   * New script tests/using-intree for running tests on the source tree.
727   * Do not spew diff output to terminal (by default).  Print sensible
728     message instead.  Closes:#736526.
729   * Print better message for lack of configuration settings.
730   * Document that dgit rpush needs gnupg and your public key on the build
731     host.  Closes:#736529.
732   * Fix a manpage reference to `--dget=' where `--dgit=' was intended.
733   * Provide t-archive-process-incoming and t-archive-query subroutines for
734     regression test scripts to use.
735   * Print better message for unknown operations.
736   * Provide `dgit clean'.  Closes:#736527.
737   * When cloning, set up a remote `vcs-git' from the package's Vcs-Git
738     (and put an appropriate caveat in the manpage).  Closes:#740687.
739     Closes:#740721.
740   * Improve error message for .dsc having already been signed (iff
741     using libdpkg-perl 1.17.x).  Closes:#731635.
742   * Improve error message for .dsc parsing failures more generally.
743   * Better reporting of child exit statuses (esp. deaths due to signals).
744   * In rpush, on protocol error talking to build host, check if the
745     subprocess died and report differently if so.  Closes:#736528.
746   * Fixed a manpage typo.
747   * When tests invoke dgit, use --dgit= so that subprocesses use our
748     dgit rather than system one.
749   * Add a test for dgit rpush.
750
751   Major new feature, currently stalled awaiting server infrastructure:
752   * dgit-repos-server: New program for receiving signed-tag-based
753     pushes.  Corresponding support in dgit itself, but not currently
754     used by default for any distro.
755   * Bring forward push of the version tag ref so it happens alongside
756     the push of the suite branch ref.
757   * New git-check and git-create methods "true" which are no-ops.
758   * test-dummy-drs `distro': for testing dgit and dgit-repos-server.
759
760  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Tue, 19 Aug 2014 11:24:02 +0100
761
762 dgit (0.21) unstable; urgency=medium
763
764   Bugfixes relating to unclean trees:
765   * Run a clean (of the specified type) before any build operation; do
766     this with `dpkg-buildpackage -T' clean if necessary, so -wd now works
767     with all the building methods.
768   * Refuse to do quilt fixup (explicitly requested, or as a result of
769     build) if the tree contains ignored files.  Closes:#731632.
770
771   Error message improvements:
772   * Use failedcmd to report errors when ssh psql fails.  Closes:#734281.
773   * failedcmd prints $us, not $_[0] - ie, dgit doesn't pretend,
774     in the error message, to be its child.
775   * Do not report the (irrelevant) $? when madison parsing fails.
776
777   Better workflow flexibility:
778   * Provide --build-products-dir option (and corresponding semantics
779     for -C) to specify where to find the files to upload.  Closes:#731633.
780
781   Support for Debian backports suites:
782   * New quirks infrastructure in configuration and internals,
783     for suites (or perhaps distros) which are a bit like others.
784   * Use correct default archive location.
785   * Compute "-v" option default value correctly.
786   * Closes:#733954.
787
788   Packaging improvement:
789   * Add `Testsuite: autopkgtest' to debian/control.  (This will only have
790     the right effect with recent enought dpkg; it will generate a harmless
791     warning with earlier versions of dpkg.)
792
793  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 19 Jan 2014 02:14:25 +0000
794
795 dgit (0.20) unstable; urgency=high
796
797   * Use newest (not oldest) version currently in suite when calculating
798     what value to use for -v<version> by default.  Closes:#732781.
799
800  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 21 Dec 2013 19:13:56 +0000
801
802 dgit (0.19) unstable; urgency=low
803
804   Testing facilities:
805   * Provide "test-dummy" distro with "dummycat" access method.
806   * Provide a selection of autopkgtest (DEP-8) tests.
807
808  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Wed, 27 Nov 2013 18:27:17 +0000
809
810 dgit (0.18.2) unstable; urgency=high
811
812   Bump archive upload urgency to high.
813
814  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 24 Nov 2013 17:42:57 +0000
815 dgit (0.18.1) unstable; urgency=low
816
817   Bugfixes:
818   * sshpsql archive query method passes LANG=C.  Closes:#729788.
819   * Subcommand program or argument options containing hyphens work.
820     (Eg, --dpkg-buildpackage:blah was previously incorrectly rejected.)
821
822   Packaging fixes:
823   * Depend on dput.
824   * Depend on curl | wget, as dget needs one of those.  (The dput package,
825     which contains dget, doesn't require them because dput itself works
826     without.)
827
828  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 24 Nov 2013 17:36:03 +0000
829
830 dgit (0.18) unstable; urgency=low
831
832   Major new feature:
833   * Remote push (dgit rpush), a la debsign -r.  Closes:#721185.
834
835   Improved behaviours:
836   * dgit build, by default, uses the archive to find out what the correct
837     -v<version> option is to pass to dpkg-genchanges.  Closes:#727200.
838   * Abolish the sshdakls method and replace it with sshpsql: that is, ssh
839     (to coccia, by default) and run sql commands on the ftpmaster
840     database.  This is faster and has fewer bugs but is vulnerable to db
841     schema changes.  Closes:#726955.  Closes:#720170.  Closes:#720176.
842   * When generating git tags, quote the (uncanonicalised) changelog's
843     Distribution field as the suite.
844   * Command execution reports from --dry-run go to stderr.
845
846   Other new features:
847   * Support --gpg=... to provide a replacement command for gpg.
848   * Support --ssh=... and --ssh:... to affect how we run ssh.
849
850   Bugfixes:
851   * When using sbuild, pass the arguments to mergechanges in the right
852     order so that we use the correct Description (the _source one,
853     not the one from sbuild which didn't get e.g. -v<version>).
854   * push actually takes an optional suite, like it says in the synopsis.
855     Closes:#727125.
856   * Fix dgit --damp-run sbuild to actually work.
857   * Fix the "shellquote" internal subroutine.  The bugs in it ought not to
858     have caused any real trouble in previous versions of dgit.
859
860   Documentation and message fixes:
861   * manpage: Clarify comments about orig tarballs.  Closes: #723605.
862   * manpage: Remove comment in BUGS about lack of policy docs
863     for Dgit field, which is specified now.  Closes:#720201.
864   * manpage: Make discussion of --existing-package less scary.  The
865     default archive access method no longer needs it.  Closes:#720171.
866   * Mention "git merge", not "git-merge", in helpful message.
867     Closes:#725632.
868
869   Internal and debugging improvements:
870   * Report chdir actions in debugging output.
871   * Improvements to implementation of --dry-run and --damp-run.
872   * Some code motion and cleanups.
873
874   Note: changelog entries for the following versions, which were uploaded
875   to Debian experimental, have been collapsed into this single entry:
876     0.18~experimental2 0.18~experimental1
877     0.17~experimental7 0.17~experimental6 0.17~experimental5
878     0.17~experimental4 0.17~experimental3 0.17~experimental2
879     0.17~experimental1
880     0.16~experimental3 0.16~experimental2 0.16~experimental1
881   We do describe here all the changes since 0.17.
882
883  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 09 Nov 2013 10:12:13 +0000
884
885 dgit (0.17) unstable; urgency=high
886
887   * Do not grobble around in .git/refs/; instead, use git-show-ref.
888     This avoids breaking when git makes packed refs.  Closes:728893.
889   * Clarify error message for missing refs/remotes/dgit/dgit/<suite>.
890
891  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 07 Nov 2013 00:02:47 +0000
892
893 dgit (0.16) unstable; urgency=high
894
895   * Format `(3.0) quilt' fixup does not mind extraneous other files
896     in the build tree (e.g., build products and logs).  Closes: #727053.
897   * Set autoflush on stdout, to get better ordering of debugging
898     etc. output when stdout is redirected.
899   * New --damp-run mode, for more convenient and fuller testing etc.
900
901  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Tue, 22 Oct 2013 13:06:54 +0100
902
903 dgit (0.15) unstable; urgency=low
904
905   * Better handling of packages pushed using dgit and stuck in NEW.
906     (And, use of `--new' is not needed with fetch.)  Closes: #722199.
907   * More comprehensive warnings in many cases of archive skew.
908   * Implement `dgit help' as well as `--help'.  Closes: #721661.
909   * Provide `dgit version' and `--version'.  Closes: #721654.
910
911  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 12 Sep 2013 00:14:05 +0100
912
913 dgit (0.14) unstable; urgency=low
914
915   * Include package name in tag message.
916   * Create directory .git/dgit when needed during build.  Closes: #721428.
917   * Add Vcs-Git and Vcs-Browser [Richard Hartmann].  Closes: #721404.
918     These fields refer to the development branch, "master", on alioth,
919     not to the dgit suite refs (which are not accessible to git clone).
920
921  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 01 Sep 2013 18:30:44 +0100
922
923 dgit (0.13) unstable; urgency=low
924
925   * Reuse already-downloaded .orig files after checking their hashes.
926     Closes: #720526.  (This introduces a dependency on Digest::SHA.)
927   * Do not always pointlessly fetch the .dsc twice.  (That code was
928     erroneously duplicated during editing, apparently.)
929   * Remove DGET_UNPACK from the environment in case the user has set it.
930   * Remove scary warning from Description.
931   * When uploading to Debian, tell dput to upload to "ftp-master".  This
932     avoids problems with derivatives whose dput has a different default.
933     Closes: #720958.
934   * Fix some bugs in dgit fetch --dry-run which made dgit push
935     --dry-run often not work at all.
936   * Update the local tracking branch for the dgit remote, when pushing.
937     Closes: #720956.
938   * Fix references in manpage to old Vcs-Dgit-Master field name.
939   * Reorganise manpage sections to be in a more conventional order.
940   * New manpage section on FILES IN THE SOURCE PACKAGE BUT NOT IN GIT.
941     Closes: #721186.
942
943  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 29 Aug 2013 00:27:23 +0100
944
945 dgit (0.12) unstable; urgency=low
946
947   * Cope with packages with epoch.  Closes: #720897.
948   * Improve error message for non-fast-forward push.  Closes: #720896.
949   * New --ignore-dirty option to skip noncritical check.  Closes: #720895.
950   * New --no-quilt-fixup option to suppress quilt fixup.  RTFM.
951   * Add Closes line for #720595 to changelog entry for 0.11.
952
953  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Mon, 26 Aug 2013 16:50:39 +0100
954
955 dgit (0.11) unstable; urgency=low
956
957   * Location of dgit-repos is now git.debian.org:/git/dgit-repos/repos.
958     Closes: #720525.  The rename on the server side will break older
959     versions of dgit.
960   * Fix bug which would make quilt patch fixup fail if git status
961     produced "M" lines.
962   * Autogenerated quilt patch fixup patch Description contains several
963     recent git commits, rather than implying that the patch corresponds
964     exactly to the top git commit.
965   * Use "ftp.debian.org" not "http.debian.net" as the default Debian
966     archive.  (http.debian.net tends to defeat certain kinds of cacheing,
967     and can also have more skew.)
968   * dgit build uses dpkg-buildpackage; there is a dgit git-build
969     for using git-buildpackage.  Closes: #720595.
970   * Better error message for use of UNRELEASED suite.  Closes: #720523.
971   * Do not canonicalise suite more than once.  Related to: #720526.
972   * Fix a badly open-coded copy of check_not_dirty.  Closes: #720524.
973   * Fix some bugs in building (eg build-source would fail to do the quilt
974     fixup; the --clean check in build was wrong).
975   * Add missing dependency on realpath.
976   * git-build (git-buildpackage wrapper) does not bother canonicalising
977     the suite if --git-ignore-branch is used.
978
979  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 25 Aug 2013 17:00:43 +0100
980
981 dgit (0.10) unstable; urgency=low
982
983   * Create .pc/applied-patches - do not empty it (!)
984
985  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sun, 25 Aug 2013 00:51:50 +0100
986
987 dgit (0.9) unstable; urgency=low
988
989   * New cleaning arrangements.
990   * More comprehensive workaround for `3.0 (quilt)'.
991   * In push, double-check the .changes against the changelog.
992   * Better error when source package contains .git.  Closes: #720555.
993   * Change our .dsc field name to `Dgit'.  Relevant to #720201.
994   * Fix bug handling our synthetic merges when we see them in
995     the remote suite branch.
996   * `3.0 (quilt)' fixup creates .pc/applied-patches since modern
997     dpkg-source creates it even though old ones didn't always.
998
999  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 24 Aug 2013 18:49:02 +0100
1000
1001 dgit (0.8) unstable; urgency=low
1002
1003   * Fix comparison of archive's .dsc's hash and git branch head
1004     to DTRT.
1005   * When creating repos in dgit-repos (using the ssh-cmd method),
1006     copy _template rather than using mkdir and git init.
1007     Closes: #720522.
1008   * In push, do git fetch as well as archive fetch, or archive
1009     fetch can fail.
1010
1011  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Fri, 23 Aug 2013 12:24:09 +0100
1012
1013 dgit (0.7) unstable; urgency=low
1014
1015   * If dak ls, or rmadison, reports multiple versions, look for them
1016     all, and pick the newest .dsc that doesn't give 404.
1017   * Manpage formatting fix.
1018   * Name the local remote tracking branch remotes/dgit/dgit/<suite>
1019     so that we avoid a warning from git about ambiguous branch names.
1020
1021  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 22 Aug 2013 18:29:10 +0100
1022
1023 dgit (0.6) unstable; urgency=low
1024
1025   * Allow fetching when archive has out-of-date git hash in .dsc.
1026     Closes: #720490.
1027
1028  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 22 Aug 2013 16:02:10 +0100
1029
1030 dgit (0.5) unstable; urgency=low
1031
1032   * Upload to unstable, as this version mostly works.  (All the RC
1033     bugs of which I'm aware are now properly represented in the BTS.)
1034
1035  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 22 Aug 2013 15:38:00 +0100
1036
1037 dgit (0.4~pre2) experimental; urgency=low
1038
1039   * Mangle debian/<version> tags the way git-buildpackage does
1040     (as of git-buildpackage 0.5.5, 3c6bbd0f4992f8da).
1041   * Support dgit-distro.<distro>.keyid config option.
1042   * Revert change to ssh to alioth CNAME, as the recommended CNAME
1043     is to something with no write access to the fs and the new CNAME
1044     has not yet been set up.  This reintroduces #720172 :-/.
1045
1046  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 22 Aug 2013 15:31:17 +0100
1047
1048 dgit (0.4~pre1) experimental; urgency=low
1049
1050   * Use dgit.debian.net vhost on alioth.  Closes:#720172.
1051   * Usage message.  Closes:#720085.
1052   * Provide "dgit sbuild".
1053   * Assorted manpage fixes and improvements.
1054   * Fail if a required config item is missing.
1055   * Much better error messages.
1056   * Better error checking when parsing RFC822-style control data.
1057   * Better checking that the supplied .dsc and debian/changes correspond.
1058   * Ordering improvement in push: don't add dsc field until git push done.
1059   * New --distro option (helps with unknown suites).
1060   * Bugfixes.
1061
1062  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 22 Aug 2013 13:36:44 +0100
1063
1064 dgit (0.3) experimental; urgency=low
1065
1066   * New version which appears to be able to sort of work at least
1067     some of the time.
1068
1069  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Sat, 17 Aug 2013 09:18:04 +0100
1070
1071 dgit (0.2) experimental; urgency=low
1072
1073   * New version which might actually work but probably won't.
1074
1075  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Fri, 16 Aug 2013 16:52:17 +0100
1076
1077 dgit (0.1) experimental; urgency=low
1078
1079   * Initial experimental (partial) version.
1080
1081  -- Ian Jackson <ijackson@chiark.greenend.org.uk>  Thu, 15 Aug 2013 12:09:01 +0100
1082