Skip to content

Commit daa5dd9

Browse files
committed
Increment version for release
1 parent 3a09798 commit daa5dd9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Makefile.PL

+1-1
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ my %WriteMakefileArgs = (
7070
"File::Slurper" => "0.012",
7171
"File::Which" => 0
7272
},
73-
"VERSION" => "0.10",
73+
"VERSION" => "0.11",
7474
"test" => {
7575
"TESTS" => "t/*.t"
7676
}

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@ my $signer = Crypt::OpenSSL::SignCSR->new(
1515
format => $format, # Output format "text" or "pem" (default)
1616
});
1717
my $cert = $signer->sign(
18-
$request, # CRS in PEM format
18+
$request, # CSR in PEM format
1919
);
2020

2121
my $ret = $signer->set_days(3650);
2222
my $ret = $signer->set_format("text");
2323
my $ret = $signer->set_days("SHA512");
2424

25-
$cert = $signer->sign( $request ); # CRS in PEM format
25+
$cert = $signer->sign( $request ); # CSR in PEM format
2626
```
2727

2828
# DESCRIPTION

lib/Crypt/OpenSSL/SignCSR.pm

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ use warnings;
77

88
require Exporter;
99

10-
our $VERSION = "0.10";
10+
our $VERSION = "0.11";
1111

1212
our @ISA = qw(Exporter);
1313

0 commit comments

Comments
 (0)