diff options
author | Rafael Garcia-Suarez <rgs@consttype.org> | 2009-10-21 19:34:06 +0200 |
---|---|---|
committer | Rafael Garcia-Suarez <rgs@consttype.org> | 2009-10-22 10:16:42 +0200 |
commit | 745002c984ddd273ac0b9268d17a1d1a2660805d (patch) | |
tree | 0251878fb80b2de82919b13085141e9d28d8d5ae /dist/base | |
parent | 7c8178a1ff9cacd9d60d7ce9a16d7e59a0bbefff (diff) | |
download | perl-745002c984ddd273ac0b9268d17a1d1a2660805d.tar.gz |
Bump base and fields versions to 2.15
Diffstat (limited to 'dist/base')
-rw-r--r-- | dist/base/Changes | 3 | ||||
-rw-r--r-- | dist/base/META.yml | 2 | ||||
-rw-r--r-- | dist/base/lib/base.pm | 2 | ||||
-rw-r--r-- | dist/base/lib/fields.pm | 2 |
4 files changed, 6 insertions, 3 deletions
diff --git a/dist/base/Changes b/dist/base/Changes index 12d615c0e0..6dda10b75c 100644 --- a/dist/base/Changes +++ b/dist/base/Changes @@ -1,3 +1,6 @@ +2.15 + - Bump version to 2.15 so base and fields have the same version again + 2.14 - fix problem with SIGDIE on perls < 5.10 - Make @INC available in base.pm's error message when diff --git a/dist/base/META.yml b/dist/base/META.yml index df139a1ef3..0a91128bb3 100644 --- a/dist/base/META.yml +++ b/dist/base/META.yml @@ -1,6 +1,6 @@ --- #YAML:1.0 name: base -version: 2.14 +version: 2.15 abstract: ~ license: ~ author: ~ diff --git a/dist/base/lib/base.pm b/dist/base/lib/base.pm index 574925fb60..2f6a19e4b9 100644 --- a/dist/base/lib/base.pm +++ b/dist/base/lib/base.pm @@ -2,7 +2,7 @@ package base; use strict 'vars'; use vars qw($VERSION); -$VERSION = '2.14'; +$VERSION = '2.15'; $VERSION = eval $VERSION; # constant.pm is slow diff --git a/dist/base/lib/fields.pm b/dist/base/lib/fields.pm index c90bc0a16c..de6f379d9f 100644 --- a/dist/base/lib/fields.pm +++ b/dist/base/lib/fields.pm @@ -11,7 +11,7 @@ unless( eval q{require warnings::register; warnings::register->import; 1} ) { } use vars qw(%attr $VERSION); -$VERSION = '2.14'; +$VERSION = '2.15'; # constant.pm is slow sub PUBLIC () { 2**0 } |