Skip to content

Commit

Permalink
Merge branch 'release/0.54' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
Scott Hardin committed Apr 26, 2021
2 parents b40fbd2 + fe1763b commit 2fafcc0
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 13 deletions.
2 changes: 1 addition & 1 deletion META.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
--- #YAML:1.0
name: Crypt-X509
version: 0.53
version: '0.54';
abstract: Parse a X.509 certificate
author:
- Mike Jackson, Alexander Jung, Duncan Segrest, Oliver Welter
Expand Down
27 changes: 16 additions & 11 deletions build.mkd
Original file line number Diff line number Diff line change
Expand Up @@ -6,23 +6,28 @@ Note: Replace '0.10' in the examples below with the current version.

* Start release branch

# Set the connver to the new version number
connver=0.10
git flow release start $connver develop
# Set the modver to the new version number
modver=0.10
git flow release start $modver develop

* Bump version number in lib/Connector.pm
* Make any last-minute fixes

perl -i -pe "s{^version: .+}{version: '$connver';};" \
META.yml
git add META.yml
git commit -m "bump version to $connver"
* Run unit tests

* Make any last-minute fixes
perl Makefile.PL
make test

* Bump version number in lib/Crypt/X509.pm

perl -i -pe "s{^our \\\$VERSION.+}{our \\\$VERSION = '$modver';};" lib/Crypt/X509.pm
perl -i -pe "s{^version: .+}{version: '$modver';};" META.yml
git add lib/Crypt/X509.pm META.yml
git commit -m "bump version to $modver"

* Finalize release (write the version number in the TAG\_MSG)

git flow release finish "$connver"
git push origin develop master "$connver"
git flow release finish "$modver"
git push origin develop master "$modver"

* Build tarball

Expand Down
2 changes: 1 addition & 1 deletion lib/Crypt/X509.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ our @ISA = qw(Exporter);
our %EXPORT_TAGS = ( 'all' => [qw()] );
our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
#our @EXPORT = qw(error new not_before not_after serial);
our $VERSION = '0.53';
our $VERSION = '0.54';
my $parser = undef;
my $asn = undef;
my $error = undef;
Expand Down

0 comments on commit 2fafcc0

Please sign in to comment.