diff options
author | franck cuny <franck@lumberjaph.net> | 2009-11-10 17:43:10 +0100 |
---|---|---|
committer | franck cuny <franck@lumberjaph.net> | 2009-11-10 17:43:10 +0100 |
commit | 1ed5356fbeac64e156dfd68f56fadeb523246a27 (patch) | |
tree | fff04828ba0d90b29d5d408707b62d8d4b4e2cec | |
parent | add .gitignore (diff) | |
download | webservice-google-suggest-1ed5356fbeac64e156dfd68f56fadeb523246a27.tar.gz |
Checking in changes prior to tagging of version 0.04. Changelog diff is: 0.04
diff --git a/Changes b/Changes index 27e3a76..f0c7b23 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl extension WebService::Google::Suggest +0.04 Tue 10 Nov 2009 05:26:27 PM CET + - Fixed per Google Suggest JavaScript updates + 0.03 Thu Oct 11 14:35:12 PDT 2007 - Fixed per Google Suggest JavaScript updates (Thanks to Lorimier Loic)
-rw-r--r-- | .shipit | 7 | ||||
-rw-r--r-- | Changes | 3 | ||||
-rw-r--r-- | MANIFEST | 10 | ||||
-rw-r--r-- | MANIFEST.SKIP | 4 | ||||
-rw-r--r-- | Makefile.PL | 16 | ||||
-rw-r--r-- | lib/WebService/Google/Suggest.pm | 5 |
6 files changed, 28 insertions, 17 deletions
diff --git a/.shipit b/.shipit index c02af08..d2778c7 100644 --- a/.shipit +++ b/.shipit @@ -1,7 +1,2 @@ steps = FindVersion, ChangeVersion, CheckChangeLog, DistTest, Commit, Tag, MakeDist, UploadCPAN - -# if directory, where the normal "make dist" puts its file. -#MakeDist.destination = ~/shipit-dist -#svn.tagpattern = ShipIt-%v - -#CheckChangeLog.files = ChangeLog +git.push_to = origin diff --git a/Changes b/Changes index 27e3a76..f0c7b23 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl extension WebService::Google::Suggest +0.04 Tue 10 Nov 2009 05:26:27 PM CET + - Fixed per Google Suggest JavaScript updates + 0.03 Thu Oct 11 14:35:12 PDT 2007 - Fixed per Google Suggest JavaScript updates (Thanks to Lorimier Loic) diff --git a/MANIFEST b/MANIFEST index a024fc7..4ef624d 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,8 +1,16 @@ Changes +inc/Module/Install.pm +inc/Module/Install/Base.pm +inc/Module/Install/Can.pm +inc/Module/Install/Fetch.pm +inc/Module/Install/Makefile.pm +inc/Module/Install/Metadata.pm +inc/Module/Install/Win32.pm +inc/Module/Install/WriteAll.pm lib/WebService/Google/Suggest.pm Makefile.PL MANIFEST This list of files +META.yml Module meta-data (added by MakeMaker) README t/00_compile.t t/01_suggest.t -META.yml Module meta-data (added by MakeMaker) diff --git a/MANIFEST.SKIP b/MANIFEST.SKIP index 71b1be8..79e6115 100644 --- a/MANIFEST.SKIP +++ b/MANIFEST.SKIP @@ -1,5 +1,7 @@ \bRCS\b \bCVS\b +\.svn/ +\.git/ ^MANIFEST\. ^Makefile$ ~$ @@ -9,3 +11,5 @@ ^MakeMaker-\d \.gz$ \.cvsignore +\.shipit +\.gitignore diff --git a/Makefile.PL b/Makefile.PL index 66c30e9..6fc7579 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,9 +1,7 @@ -use ExtUtils::MakeMaker; -WriteMakefile( - 'NAME' => 'WebService::Google::Suggest', - 'VERSION_FROM' => 'lib/WebService/Google/Suggest.pm', # finds $VERSION - 'PREREQ_PM' => { - Test::More => 0.32, - LWP::UserAgent => 0, - }, -); +use inc::Module::Install; +name 'Webservice-Google-Suggest'; +all_from 'lib/WebService/Google/Suggest.pm'; +requires 'LWP::UserAgent'; +build_requires 'Test::More'; +auto_set_repository; +WriteAll; diff --git a/lib/WebService/Google/Suggest.pm b/lib/WebService/Google/Suggest.pm index 8f04cd4..d2e36c0 100644 --- a/lib/WebService/Google/Suggest.pm +++ b/lib/WebService/Google/Suggest.pm @@ -2,7 +2,7 @@ package WebService::Google::Suggest; use strict; use vars qw($VERSION); -$VERSION = '0.03'; +$VERSION = '0.04'; use Carp; use LWP::UserAgent; @@ -105,6 +105,9 @@ properties. =head1 AUTHOR Tatsuhiko Miyagawa E<lt>miyagawa@bulknews.netE<gt> +Franck Cuny E<lt>franck@lumberjaph.netE<gt> + +=head1 LICENSE This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself. |