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/Compression | |
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/Compression')
-rw-r--r-- | scripts/Dpkg/Compression/FileHandle.pm | 2 | ||||
-rw-r--r-- | scripts/Dpkg/Compression/Process.pm | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/scripts/Dpkg/Compression/FileHandle.pm b/scripts/Dpkg/Compression/FileHandle.pm index 658a9f743..e9c975b6d 100644 --- a/scripts/Dpkg/Compression/FileHandle.pm +++ b/scripts/Dpkg/Compression/FileHandle.pm @@ -18,6 +18,8 @@ package Dpkg::Compression::FileHandle; use strict; use warnings; +our $VERSION = "1.00"; + use Dpkg::Compression; use Dpkg::Compression::Process; use Dpkg::Gettext; diff --git a/scripts/Dpkg/Compression/Process.pm b/scripts/Dpkg/Compression/Process.pm index b7cbc0318..538490da2 100644 --- a/scripts/Dpkg/Compression/Process.pm +++ b/scripts/Dpkg/Compression/Process.pm @@ -18,6 +18,8 @@ package Dpkg::Compression::Process; use strict; use warnings; +our $VERSION = "1.00"; + use Dpkg::Compression; use Dpkg::ErrorHandling; use Dpkg::Gettext; |