summaryrefslogtreecommitdiff
path: root/META.yml
Commit message (Collapse)AuthorAgeFilesLines
...
* Bump version for 5.19.4Steve Hay2013-08-201-1/+1
|
* Update META files following commit ac2e5adSteve Hay2013-08-191-1/+0
| | | | | | | | | | I must run nmake test(_porting) before committing I must run nmake test(_porting) before committing I must run nmake test(_porting) before committing (Presumably this will result in perl's I18N::LangTags getting indexed by PAUSE now, which may resolve the problems mentioned in that previous commit.)
* Update CPAN-Meta to CPAN version 2.132140Chris 'BinGOs' Williams2013-08-021-1/+1
| | | | | | | | | | | | | | | [DELTA] 2.132140 2013-08-02 11:54:17 America/New_York [DOCUMENTATION] - Fixed some typos in CPAN::Meta::Spec [OTHER] - migrated repository to Perl-Toolchain-Gang organization on Github and updated metadata accordingly
* bump version to v5.19.3Aristotle Pagaltzis2013-07-221-1/+1
|
* Move version from lib/ to cpan/Nicholas Clark2013-07-161-3/+0
| | | | | | | | | Whilst there are still several differences between what's in core and what's in the CPAN tarball, moving the files in core to their own directory with the same layout as the CPAN distribution simplifies things. Somewhat surprisingly, none of the toolchain modules C<use version;> so there's no need to add to lib/buildcustomize.pl
* Move Exporter from lib/ to dist/Exporter/Nicholas Clark2013-07-031-3/+1
| | | | | | | | | | Exporter has been considered dual life, upstream blead, since commit 6295adb525682844 (Sep 2006), but it was not moved to dist/ in 2009 with the other dual-life modules because it was not possible to disentangle it from the early stages of the build bootstrapping. The build bootstrapping is now sufficiently simplified that it's possible to move it to dist/
* bump version to v5.19.2David Golden2013-06-201-1/+1
|
* Update CPAN-Meta to CPAN version 2.131560Chris 'BinGOs' Williams2013-06-061-1/+1
| | | | | | | | | | [DELTA] 2.131560 2013-06-05 15:26:36 America/New_York [DOCUMENTATION] - Replaced CPAN::Meta SYNOPSIS with code that actually works
* CPAN-Meta has changed so regenerate the META.* filesChris 'BinGOs' Williams2013-05-301-1/+1
|
* Update to CPAN-Meta means META.* need regeneratingChris 'BinGOs' Williams2013-05-241-1/+1
|
* bump version to 5.19.1Ricardo Signes2013-05-201-1/+1
|
* bump version to 5.19.0Ricardo Signes2013-05-181-1/+1
|
* Bump version to 5.18.0-RC0Ricardo Signes2013-05-071-1/+1
| | | | | | | | This was done with: ./perl -Ilib Porting/bump-perl-version -i 5.17.12 5.18.0 Followed by two tiny manual edits: INSTALL and patchlevel.h
* Bump the perl version in various places for 5.17.12Ricardo Signes2013-04-201-1/+1
| | | | ...even though it should not get released
* Bump version to5.17.11Max Maischein2013-03-221-1/+1
|
* Bump to v5.17.10Chris 'BinGOs' Williams2013-02-201-1/+1
|
* Teach makemeta to use CPAN::Meta to generate both META.json and META.ymlChris 'BinGOs' Williams2013-02-021-11/+17
|
* move B-Lint and File-CheckTree to ./cpanRicardo Signes2013-01-211-2/+0
|
* Bump the Perl version in various places for 5.17.9Aaron Crane2013-01-201-1/+1
|
* Bump the perl version in various places for 5.17.8Dave Rolsky2012-12-181-1/+1
|
* bump version to 5.17.7Ricardo Signes2012-11-201-1/+1
|
* Bump the version to 5.17.6Florian Ragwitz2012-10-191-1/+1
|
* Bump the perl version to 5.17.5Florian Ragwitz2012-09-191-1/+1
|
* Stop CPAN from indexing mad/Florian Ragwitz2012-09-101-0/+1
|
* Bump version to 5.17.4Steve Hay2012-08-201-1/+1
|
* bump to version 5.17.3Tony Cook2012-07-201-1/+1
|
* [rt.cpan.org #61577] sockdomain and socktype undef on newly accepted socketsTony Cook2012-07-021-0/+3
| | | | | | | | | | | | | | | | | | There appears to be a flaw in IO::Socket where some IO::Socket objects are unable to properly report their socktype, sockdomain, or protocol (they return undef, even when the underlying socket is sufficiently initialized to have these properties). The attached patch should cover IO::Socket objects created via accept(), new_from_fd(), new(), and anywhere else whose details haven't been properly cached. No new code should be executed on IO::Socket objects whose details are already cached and present. These tests were original written by Daniel Kahn Gillmor <dkg@fifthhorseman.net>, I've mangled them for use in a hopefully final fix for the issue.
* bump version to 5.17.2Jesse Luehrs2012-06-201-1/+1
|
* bump version to 5.17.1Jesse Luehrs2012-06-191-1/+1
|
* bump version to 5.17.0Ricardo Signes2012-05-201-1/+1
|
* Revert fixes for [rt.cpan.org #61577]Ricardo Signes2012-05-141-3/+0
| | | | | | | | | | | | These changes introduced some test failures on AIX and other platforms, and rather than dig around for more failing platforms during the RCx period, we will revert this to reapply later when it is more tested. This reverts commit 01b71c89216c9f447494638a5d108e13c45c3863. This reverts commit b6903614db213f07401367249dc84c896eb099b7. This reverts commit 271d04eee1933df0971f54f7bf9a5ca3575e7e6a.
* bump version to 5.16.0 RC0Ricardo Signes2012-05-101-1/+1
| | | | | | | | Done with: ./perl -Ilib Porting/bump-perl-version -i 5.15.9 5.16.0 ...followed by a small edit to INSTALL and patchlevel.h.
* [rt.cpan.org #61577] sockdomain and socktype undef on newly accepted socketsDaniel Kahn Gillmor2012-05-101-0/+3
| | | | | | | | | | | | | | There appears to be a flaw in IO::Socket where some IO::Socket objects are unable to properly report their socktype, sockdomain, or protocol (they return undef, even when the underlying socket is sufficiently initialized to have these properties). The attached patch should cover IO::Socket objects created via accept(), new_from_fd(), new(), and anywhere else whose details haven't been properly cached. No new code should be executed on IO::Socket objects whose details are already cached and present.
* Bump the perl version in various places for 5.15.9Abigail2012-03-191-1/+1
|
* Bump versions from 5.15.7 to 5.15.8Max Maischein2012-02-201-1/+1
|
* Pod-Perldoc is now maintained on CPANFlorian Ragwitz2012-01-311-1/+0
|
* Bump the perl version in various places for v5.15.7Chris 'BinGOs' Williams2012-01-201-1/+1
|
* Move Tie-File out of cpan/ and into dist/Todd Rinaldo2011-12-231-0/+1
| | | | | | | Tie::File has not been changed on CPAN since 2003. It has meanwhile been actively maintained in p5p. Signed-off-by: Chris 'BinGOs' Williams <chris@bingosnet.co.uk>
* Bump the perl version in various places for 5.15.6Dave Rolsky2011-12-191-1/+1
|
* Add autodoc.pl to the 'no_index' section of META.ymlNicholas Clark2011-12-191-0/+1
| | | | | This stops search.cpan.org mistaking its stub contents for the (full, generated) perlapi manpage.
* Fix Maintainers.pl and META.yml for removal of lib/version.tDavid Golden2011-12-151-1/+0
|
* Bump the perl version for 5.15.5Steve Hay2011-11-201-1/+1
|
* Bump the perl version in various places for 5.15.4Florian Ragwitz2011-10-201-1/+1
|
* bump version to 5.15.3 using Porting/bump-perl-versionStevan Little2011-09-201-1/+1
|
* Update META.yml following 986a805cFather Chrysostomos2011-09-171-0/+1
|
* dual-life CarpZefram2011-09-041-0/+1
| | | | | | | | | Make Carp portable to older Perl versions: * check minimum Perl version (5.6) at load time * use || instead of // * attempt downgrading to avoid loading Unicode tables when that might fail * check whether utf8::is_utf8() exists before calling it * lower IPC::Open3 version requirement in Carp tests
* perlfaq is now maintained on CPANFlorian Ragwitz2011-08-291-1/+0
|
* bump version to 5.12.2 using Porting/bump-perl-versionRicardo Signes2011-08-201-1/+1
|
* bump perl version number to 5.15.1Zefram2011-07-201-1/+1
|
* Dual-life Search::DictFlorian Ragwitz2011-07-171-0/+1
|