summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2011-05-13 14:01:38 +0200
committerDaniel Friesel <derf@finalrewind.org>2011-05-13 14:01:38 +0200
commit97beb3e0db45550784dced0abfbe38f0eb65571c (patch)
treeeb84fe70e317fd2ea57b98bff3fe2dcea5fb6ec3
parent2dce451112537026d805e748f86bb7fbaa554c93 (diff)
Release v0.20.2
-rw-r--r--Build.PL3
-rw-r--r--Changelog2
-rwxr-xr-xbin/raps24
-rw-r--r--lib/App/Raps2.pm4
-rw-r--r--lib/App/Raps2/Password.pm2
-rw-r--r--lib/App/Raps2/UI.pm2
6 files changed, 9 insertions, 8 deletions
diff --git a/Build.PL b/Build.PL
index 95da29a..5c8a24b 100644
--- a/Build.PL
+++ b/Build.PL
@@ -12,9 +12,8 @@ my $build = Module::Build->new(
'Test::More' => 0,
'Test::Pod' => 0,
},
- dist_name => 'App-Raps2',
- dist_version_from => 'bin/raps2',
license => 'unrestricted',
+ module_name => 'App::Raps2',
requires => {
'perl' => '5.10.0',
'autodie' => 0,
diff --git a/Changelog b/Changelog
index c4ae0a4..ce892d0 100644
--- a/Changelog
+++ b/Changelog
@@ -1,4 +1,4 @@
-git HEAD
+raps2 0.2 - Fri May 13 2011
* Fix XDG_CONFIG_HOME / XDG_DATA_HOME handling bug. Adds new dependency
File::BaseDir
diff --git a/bin/raps2 b/bin/raps2
index 0329e59..6c378ae 100755
--- a/bin/raps2
+++ b/bin/raps2
@@ -12,7 +12,7 @@ use App::Raps2;
my $raps2 = App::Raps2->new();
my ($action, @args) = @ARGV;
-my $VERSION = '0.1';
+my $VERSION = '0.2';
$raps2->sanity_check();
$raps2->load_config();
@@ -38,7 +38,7 @@ B<raps2> I<action> I<args ...>
=head1 VERSION
-This manual documents B<raps2> version 0.1
+This manual documents B<raps2> version 0.2
=head1 DESCRIPTION
diff --git a/lib/App/Raps2.pm b/lib/App/Raps2.pm
index 4356fd5..50d7005 100644
--- a/lib/App/Raps2.pm
+++ b/lib/App/Raps2.pm
@@ -39,7 +39,7 @@ use File::BaseDir qw(config_home data_home);
use File::Path qw(make_path);
use File::Slurp qw(read_dir slurp write_file);
-our $VERSION = '0.1';
+our $VERSION = '0.2';
=head1 METHODS
@@ -346,6 +346,8 @@ sub cmd_list {
}
}
+=back
+
=head1 DEPENDENCIES
L<App::Raps2::Password>, L<App::Raps2::UI>, L<File::BaseDir>, L<File::Slurp>.
diff --git a/lib/App/Raps2/Password.pm b/lib/App/Raps2/Password.pm
index 189614b..10431ed 100644
--- a/lib/App/Raps2/Password.pm
+++ b/lib/App/Raps2/Password.pm
@@ -10,7 +10,7 @@ use Crypt::CBC;
use Crypt::Eksblowfish;
use Crypt::Eksblowfish::Bcrypt qw(bcrypt_hash en_base64 de_base64);
-our $VERSION = '0.1';
+our $VERSION = '0.2';
sub new {
my ($obj, %conf) = @_;
diff --git a/lib/App/Raps2/UI.pm b/lib/App/Raps2/UI.pm
index 67d6790..5192c43 100644
--- a/lib/App/Raps2/UI.pm
+++ b/lib/App/Raps2/UI.pm
@@ -8,7 +8,7 @@ use 5.010;
use Carp qw(confess);
use POSIX;
-our $VERSION = '0.1';
+our $VERSION = '0.2';
sub new {
my ($obj) = @_;