Просмотр исходного кода

dpkg-genbuildinfo: Bump Format to version 0.2

Guillem Jover лет назад: 9
Родитель
Сommit
950bfdaf77
3 измененных файлов с 3 добавлено и 2 удалено
  1. 1 0
      debian/changelog
  2. 1 1
      man/deb-buildinfo.man
  3. 1 1
      scripts/dpkg-genbuildinfo.pl

+ 1 - 0
debian/changelog

@@ -10,6 +10,7 @@ dpkg (1.18.15) UNRELEASED; urgency=medium
   * Add new Build-Date field to .buildinfo files.
   * Generate deterministic .buildinfo filenames in dpkg-genbuildinfo,
     following the same pattern as used for .changes files.
+  * Bump .buildinfo Format to version 0.2.
   * Perl modules:
     - Validate architecture arguments in Dpkg::Deps deps_parse().
       Prompted by Johannes Schauer <josch@debian.org>.

+ 1 - 1
man/deb-buildinfo.man

@@ -64,7 +64,7 @@ component.
 Backward incompatible changes to the format will bump the major version,
 and backward compatible changes (such as field additions) will bump the
 minor version.
-The current format version is \fB0.1\fP.
+The current format version is \fB0.2\fP.
 .TP
 .BR Source: " \fIsource-name\fP [\fB(\fP\fIsource-version\fP\fB)\fP] (required)"
 The name of the source package.

+ 1 - 1
scripts/dpkg-genbuildinfo.pl

@@ -61,7 +61,7 @@ my $stdout = 0;
 my $admindir = $Dpkg::ADMINDIR;
 my $always_include_path = 0;
 my @build_profiles = get_build_profiles();
-my $buildinfo_format = '0.1';
+my $buildinfo_format = '0.2';
 my $buildinfo;
 
 my $checksums = Dpkg::Checksums->new();