diff options
author | Abhijit Menon-Sen <ams@toroid.org> | 2013-07-13 21:29:49 +0530 |
---|---|---|
committer | Abhijit Menon-Sen <ams@toroid.org> | 2013-07-13 22:14:59 +0530 |
commit | 76b97db53754383a11c0e30949c54e45282d3317 (patch) | |
tree | 272d21236df7a89cbc25331c7bf252bc12140295 /dist | |
parent | 3c1b273b7ca4f7e3e20e9dba260670dfb71a4425 (diff) | |
download | perl-76b97db53754383a11c0e30949c54e45282d3317.tar.gz |
Edit ChangeLog, Bump VERSION before rebase/release
Diffstat (limited to 'dist')
-rw-r--r-- | dist/Storable/ChangeLog | 30 | ||||
-rw-r--r-- | dist/Storable/Storable.pm | 2 |
2 files changed, 11 insertions, 21 deletions
diff --git a/dist/Storable/ChangeLog b/dist/Storable/ChangeLog index abfc8e0c5a..33b393103c 100644 --- a/dist/Storable/ChangeLog +++ b/dist/Storable/ChangeLog @@ -1,23 +1,13 @@ -Thu May 23 09:59:33 CDT 2013 Reini Urban <rurban@cpanel.net> - - Protect against SEGV during global destruction when used - in DESTROY blocks [perl #118139]. - -Wed May 8 18:27:42 2013 -0600 Karl Williamson <public@khwilliamson.com> - Version 2.42 - - Remove core references to SVt_BIND (no changes) - -Sat Apr 13 17:45:10 2013 +0100 James E Keenan <jkeenan@cpan.org> - Version 2.41 - - Update INSTALLDIRS to favor installation under 'site' - (no changes) - -Fri Nov 30 23:03:09 2012 -0500 Steffen Mueller <smueller@cpan.org> - Version 2.40 - - Security warnings section added +Sat Jul 13 18:34:27 IST 2013 Abhijit Menon-Sen <ams@toroid.org> + Version 2.45 + + * [perl #118829] Memory leaks in STORABLE_attach + (Vladimir Timofeev) + * [perl #118139] Don't SEGV during global destruction + (Nicholas Clark, report/test from Reini Urban) + * Added security warnings section (Steffen Mueller) + * Update INSTALLDIRS to favour installation in 'site' + (James E Keenan) Tue 11 Sep 06:51:11 IST 2012 Abhijit Menon-Sen <ams@toroid.org> Version 2.39 diff --git a/dist/Storable/Storable.pm b/dist/Storable/Storable.pm index 7afa39150e..00cc2e7c48 100644 --- a/dist/Storable/Storable.pm +++ b/dist/Storable/Storable.pm @@ -22,7 +22,7 @@ package Storable; @ISA = qw(Exporter); use vars qw($canonical $forgive_me $VERSION); -$VERSION = '2.44'; +$VERSION = '2.45'; BEGIN { if (eval { local $SIG{__DIE__}; require Log::Agent; 1 }) { |