diff options
author | Raphaël Hertzog <hertzog@debian.org> | 2010-02-21 00:45:00 +0100 |
---|---|---|
committer | Raphaël Hertzog <hertzog@debian.org> | 2010-02-21 00:45:00 +0100 |
commit | 1d22992583f0010007da14ce385e72ee13a9a84f (patch) | |
tree | 1bf8fa675bce10c30369a4ac43190c5ae1a47077 /scripts/Dpkg/Control | |
parent | 5d1795408484778f7978062bb472c97b45a5cd10 (diff) | |
download | dpkg-1d22992583f0010007da14ce385e72ee13a9a84f.tar.gz |
Add $VERSION numbers to all perl modules
Modules whose API should be stable have a version 1.00.
The modules with version 0.01 are expected to have further API
changes in the (near) future or are deemed to be useful mostly
for dpkg-dev's internal usage.
Diffstat (limited to 'scripts/Dpkg/Control')
-rw-r--r-- | scripts/Dpkg/Control/Changelog.pm | 2 | ||||
-rw-r--r-- | scripts/Dpkg/Control/Fields.pm | 2 | ||||
-rw-r--r-- | scripts/Dpkg/Control/Hash.pm | 2 | ||||
-rw-r--r-- | scripts/Dpkg/Control/Info.pm | 2 |
4 files changed, 8 insertions, 0 deletions
diff --git a/scripts/Dpkg/Control/Changelog.pm b/scripts/Dpkg/Control/Changelog.pm index 4999419f0..24538a585 100644 --- a/scripts/Dpkg/Control/Changelog.pm +++ b/scripts/Dpkg/Control/Changelog.pm @@ -18,6 +18,8 @@ package Dpkg::Control::Changelog; use strict; use warnings; +our $VERSION = "1.00"; + use Dpkg::Control; use base 'Dpkg::Control'; diff --git a/scripts/Dpkg/Control/Fields.pm b/scripts/Dpkg/Control/Fields.pm index 673784914..8f14d9f19 100644 --- a/scripts/Dpkg/Control/Fields.pm +++ b/scripts/Dpkg/Control/Fields.pm @@ -18,6 +18,8 @@ package Dpkg::Control::Fields; use strict; use warnings; +our $VERSION = "1.00"; + use base qw(Exporter); use Dpkg::Gettext; use Dpkg::ErrorHandling; diff --git a/scripts/Dpkg/Control/Hash.pm b/scripts/Dpkg/Control/Hash.pm index f42525f9d..6b9f9d5de 100644 --- a/scripts/Dpkg/Control/Hash.pm +++ b/scripts/Dpkg/Control/Hash.pm @@ -18,6 +18,8 @@ package Dpkg::Control::Hash; use strict; use warnings; +our $VERSION = "1.00"; + use Dpkg::Gettext; use Dpkg::ErrorHandling; diff --git a/scripts/Dpkg/Control/Info.pm b/scripts/Dpkg/Control/Info.pm index 7ea87a08d..2b9b94b4f 100644 --- a/scripts/Dpkg/Control/Info.pm +++ b/scripts/Dpkg/Control/Info.pm @@ -18,6 +18,8 @@ package Dpkg::Control::Info; use strict; use warnings; +our $VERSION = "1.00"; + use Dpkg::Control; use Dpkg::ErrorHandling; use Dpkg::Gettext; |