Skip to content

Commit b1f1741

Browse files
committed
minor housekeeping so its easier to release once I fix something
1 parent 190ef66 commit b1f1741

File tree

6 files changed

+42
-47
lines changed

6 files changed

+42
-47
lines changed

Build.PL

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,11 @@ use Module::Build;
55
my $builder = Module::Build->new(
66
module_name => 'DBD::AnyData',
77
license => 'perl',
8-
dist_author => q{Jens Rehsack <[email protected]>},
8+
#author => [ q{Jens Rehsack <[email protected]>}, q{Sven Dowideit <[email protected]>} ],
9+
author_from => 'lib/DBD/AnyData.pm',
910
dist_version_from => 'lib/DBD/AnyData.pm',
1011
resources => {
11-
repository => 'https://svn.perl.org/modules/DBD-AnyData/branches/0.1x-SqlEngine',
12+
repository => 'https://github.com/SvenDowideit/DBD-AnyData',
1213
MailingList => 'mailto:[email protected]',
1314
license => 'http://dev.perl.org/licenses/',
1415
},

Changes

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ DBD::AnyData - DBI access to XML,CSV and other data
22

33
Revision history for Perl extension DBD::AnyData.
44

5+
version 0.120 release
6+
7+
* new maintainer Sven Dowideit
8+
* fixes ...
9+
510
version 0.110 release 17th July 2010
611

712
* new maintainer Jens Rehsack

MANIFEST

+1
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,4 @@ t/00-load.t
1010
t/01-basic.t
1111
t/manifest.t
1212
t/pod.t
13+
META.json

META.yml

+13-5
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
---
22
abstract: 'DBI access to XML, CSV and other formats'
33
author:
4-
- 'Jens Rehsack <[email protected]>'
4+
- 'Copyright 2000, Jeff Zucker L<[email protected]>'
5+
- 'Copyright 2010, Jens Rehsack L<[email protected]>'
6+
- 'Copyright 2012, Sven Dowideit L<[email protected]>'
57
build_requires:
68
Test::More: 0.9
79
configure_requires:
8-
Module::Build: 0.36
9-
generated_by: 'Module::Build version 0.3607'
10+
Module::Build: 0.38
11+
dynamic_config: 1
12+
generated_by: 'Module::Build version 0.38, CPAN::Meta::Converter version 2.120921'
1013
license: perl
1114
meta-spec:
1215
url: http://module-build.sourceforge.net/META-spec-v1.4.html
@@ -15,17 +18,22 @@ name: DBD-AnyData
1518
provides:
1619
DBD::AnyData:
1720
file: lib/DBD/AnyData.pm
18-
version: 0.110
21+
version: 0.12
1922
DBD::AnyData::Statement:
2023
file: lib/DBD/AnyData.pm
24+
version: 0
2125
DBD::AnyData::Table:
2226
file: lib/DBD/AnyData.pm
27+
version: 0
2328
DBD::AnyData::db:
2429
file: lib/DBD/AnyData.pm
30+
version: 0
2531
DBD::AnyData::dr:
2632
file: lib/DBD/AnyData.pm
33+
version: 0
2734
DBD::AnyData::st:
2835
file: lib/DBD/AnyData.pm
36+
version: 0
2937
recommends:
3038
AnyData: 0.10
3139
DBI: 1.612
@@ -38,4 +46,4 @@ requires:
3846
SQL::Statement: 1.27_02
3947
resources:
4048
license: http://dev.perl.org/licenses/
41-
version: 0.110
49+
version: 0.12

Makefile.PL

+14-14
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,18 @@
1-
# Note: this file was auto-generated by Module::Build::Compat version 0.3607
1+
# Note: this file was auto-generated by Module::Build::Compat version 0.3800
22
use ExtUtils::MakeMaker;
33
WriteMakefile
44
(
5-
'NAME' => 'DBD::AnyData',
6-
'VERSION_FROM' => 'lib/DBD/AnyData.pm',
7-
'PREREQ_PM' => {
8-
'AnyData' => '0.07',
9-
'DBI' => '1.611_93',
10-
'Params::Util' => '1.00',
11-
'SQL::Statement' => '1.27_02',
12-
'Test::More' => '0.9'
13-
},
14-
'INSTALLDIRS' => 'site',
15-
'EXE_FILES' => [],
16-
'PL_FILES' => {}
17-
)
5+
'NAME' => 'DBD::AnyData',
6+
'VERSION_FROM' => 'lib/DBD/AnyData.pm',
7+
'PREREQ_PM' => {
8+
'AnyData' => '0.07',
9+
'DBI' => '1.611_93',
10+
'Params::Util' => '1.00',
11+
'SQL::Statement' => '1.27_02',
12+
'Test::More' => '0.9'
13+
},
14+
'INSTALLDIRS' => 'site',
15+
'EXE_FILES' => [],
16+
'PL_FILES' => {}
17+
)
1818
;

lib/DBD/AnyData.pm

+6-26
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ require SQL::Eval;
2828

2929
use vars qw($VERSION $err $errstr $sqlstate $drh $methods_already_installed);
3030

31-
$VERSION = '0.110';
31+
$VERSION = '0.12';
3232

3333
$err = 0; # holds error code for DBI::err
3434
$errstr = ""; # holds error string for DBI::errstr
@@ -1739,28 +1739,6 @@ You can find documentation for this module with the perldoc command.
17391739
17401740
perldoc DBD::AnyData
17411741
1742-
You can also look for information at:
1743-
1744-
=over 4
1745-
1746-
=item * RT: CPAN's request tracker
1747-
1748-
L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=DBD-AnyData>
1749-
1750-
=item * AnnoCPAN: Annotated CPAN documentation
1751-
1752-
L<http://annocpan.org/dist/DBD-AnyData>
1753-
1754-
=item * CPAN Ratings
1755-
1756-
L<http://cpanratings.perl.org/d/DBD-AnyData>
1757-
1758-
=item * Search CPAN
1759-
1760-
L<http://search.cpan.org/dist/DBD-AnyData/>
1761-
1762-
=back
1763-
17641742
=head1 ACKNOWLEDGEMENTS
17651743
17661744
Many people have contributed ideas and code, found bugs, and generally
@@ -1770,11 +1748,13 @@ Matthew Wickline, Wolfgang Weisseberg. Thanks to Jochen Weidmann for
17701748
DBD::File and SQL::Statement and of course Tim Bunce and Alligator
17711749
Descartes for DBI and its documentation.
17721750
1773-
=head1 AUTHOR & COPYRIGHT
1751+
=head1 AUTHORS
1752+
1753+
Copyright 2000, Jeff Zucker L<[email protected]>
17741754
1775-
Copyright 2000, Jeff Zucker <[email protected]>
1755+
Copyright 2010, Jens Rehsack L<[email protected]>
17761756
1777-
Copyright 2010, Jens Rehsack <[email protected]>
1757+
Copyright 2012, Sven Dowideit L<[email protected]>
17781758
17791759
This program is free software; you can redistribute it and/or modify it
17801760
under the terms of either: the GNU General Public License as published

0 commit comments

Comments
 (0)