Change to semantic versioning.

Remove individual script versions as opposed to
package version.

Signed-off-by: Thomas Hochstein <thh@thh.name>
This commit is contained in:
Thomas Hochstein 2025-05-10 13:40:30 +02:00
parent 992d678460
commit 1d3c8f9529
8 changed files with 11 additions and 17 deletions

View file

@ -13,7 +13,6 @@
# which Perl itself is published.
BEGIN {
our $VERSION = "0.02";
use File::Basename;
# we're in .../bin, so our module is in ../lib
push(@INC, dirname($0).'/../lib');
@ -81,7 +80,7 @@ my %Conf = %{ReadConfig($OptConfFile)};
### init syslog
openlog($0, 'nofatal,pid', LOG_NEWS);
syslog(LOG_NOTICE, "$MyVersion starting up.") if !$OptQuiet;
syslog(LOG_NOTICE, "$0 $VERSION starting up.") if !$OptQuiet;
### init database
my ($DBHandle,$DBQuery) = PrepareDB(\%Conf);

View file

@ -13,7 +13,6 @@
# which Perl itself is published.
BEGIN {
our $VERSION = "0.02";
use File::Basename;
# we're in .../bin, so our module is in ../lib
push(@INC, dirname($0).'/../lib');

View file

@ -13,7 +13,6 @@
# which Perl itself is published.
BEGIN {
our $VERSION = "0.02";
use File::Basename;
# we're in .../bin, so our module is in ../lib
push(@INC, dirname($0).'/../lib');