Skip to content

Commit

Permalink
Upped version to 0.5, copyright year to 2012 and prepared for release.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaldhar committed Apr 24, 2012
1 parent 7923f89 commit c6d881a
Show file tree
Hide file tree
Showing 9 changed files with 68 additions and 10 deletions.
4 changes: 4 additions & 0 deletions Changes
@@ -1,5 +1,9 @@
Revision history for REST-Utils Revision history for REST-Utils


0.5 Tue Apr 24 14:14:41 EDT 2012
Fix for RT#72337: perl 5.12 gives "Use of uninitialized value in
uc ....' warnings." Thanks Paul W. Harvey for the patch.

0.4 Tue Aug 31 22:20:53 EDT 2010 0.4 Tue Aug 31 22:20:53 EDT 2010
Removed the content_prefs() function as it isn't really helpful. Removed the content_prefs() function as it isn't really helpful.


Expand Down
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,4 +1,4 @@
Copyright (C) 2010 Consolidated Braincells Inc., all rights reserved. Copyright (C) 2012 Consolidated Braincells Inc., all rights reserved.


This distribution is free software; you can redistribute it and/or modify it This distribution is free software; you can redistribute it and/or modify it
under the terms of either: under the terms of either:
Expand Down
1 change: 1 addition & 0 deletions MANIFEST
Expand Up @@ -13,3 +13,4 @@ t/http-tunnel.t
t/mime-parse.t t/mime-parse.t
Makefile.PL Makefile.PL
META.yml META.yml
META.json
1 change: 1 addition & 0 deletions MANIFEST.SKIP
Expand Up @@ -11,3 +11,4 @@
.tmp .tmp
^MYMETA.yml$ ^MYMETA.yml$
^xt/ ^xt/
^MYMETA\.json$
51 changes: 51 additions & 0 deletions META.json
@@ -0,0 +1,51 @@
{
"abstract" : "Utility functions for REST applications",
"author" : [
"Jaldhar H. Vyas <jaldhar@braincells.com>"
],
"dynamic_config" : 1,
"generated_by" : "Module::Build version 0.38, CPAN::Meta::Converter version 2.110930",
"license" : [
"perl_5"
],
"meta-spec" : {
"url" : "http://search.cpan.org/perldoc?CPAN::Meta::Spec",
"version" : "2"
},
"name" : "REST-Utils",
"prereqs" : {
"build" : {
"requires" : {
"Test::More" : 0,
"Test::WWW::Mechanize::CGI" : 0
}
},
"configure" : {
"requires" : {
"Module::Build" : "0.38"
}
},
"runtime" : {
"requires" : {
"perl" : "5.008"
}
}
},
"provides" : {
"REST::Utils" : {
"file" : "lib/REST/Utils.pm",
"version" : "0.5"
}
},
"release_status" : "stable",
"resources" : {
"homepage" : "http://jaldhar.github.com/REST-Utils",
"license" : [
"http://dev.perl.org/licenses/"
],
"repository" : {
"url" : "http://github.com/jaldhar/REST-Utils"
}
},
"version" : "0.5"
}
9 changes: 5 additions & 4 deletions META.yml
Expand Up @@ -6,8 +6,9 @@ build_requires:
Test::More: 0 Test::More: 0
Test::WWW::Mechanize::CGI: 0 Test::WWW::Mechanize::CGI: 0
configure_requires: configure_requires:
Module::Build: 0.36 Module::Build: 0.38
generated_by: 'Module::Build version 0.3603' dynamic_config: 1
generated_by: 'Module::Build version 0.38, CPAN::Meta::Converter version 2.110930'
license: perl license: perl
meta-spec: meta-spec:
url: http://module-build.sourceforge.net/META-spec-v1.4.html url: http://module-build.sourceforge.net/META-spec-v1.4.html
Expand All @@ -16,11 +17,11 @@ name: REST-Utils
provides: provides:
REST::Utils: REST::Utils:
file: lib/REST/Utils.pm file: lib/REST/Utils.pm
version: 0.4 version: 0.5
requires: requires:
perl: 5.008 perl: 5.008
resources: resources:
homepage: http://jaldhar.github.com/REST-Utils homepage: http://jaldhar.github.com/REST-Utils
license: http://dev.perl.org/licenses/ license: http://dev.perl.org/licenses/
repository: http://github.com/jaldhar/REST-Utils repository: http://github.com/jaldhar/REST-Utils
version: 0.4 version: 0.5
2 changes: 1 addition & 1 deletion Makefile.PL
@@ -1,4 +1,4 @@
# Note: this file was auto-generated by Module::Build::Compat version 0.3603 # Note: this file was auto-generated by Module::Build::Compat version 0.3800
require 5.008; require 5.008;
use ExtUtils::MakeMaker; use ExtUtils::MakeMaker;
WriteMakefile WriteMakefile
Expand Down
2 changes: 1 addition & 1 deletion README
Expand Up @@ -77,7 +77,7 @@ You can also look for information at:


COPYRIGHT AND LICENCE COPYRIGHT AND LICENCE


Copyright (C) 2010 Consolidated Braincells Inc. All rights reserved. Copyright (C) 2012 Consolidated Braincells Inc. All rights reserved.


This distribution is free software; you can redistribute it and/or modify it This distribution is free software; you can redistribute it and/or modify it
under the terms of either: under the terms of either:
Expand Down
6 changes: 3 additions & 3 deletions lib/REST/Utils.pm
Expand Up @@ -23,11 +23,11 @@ use constant POST_UNLIMITED => -1;


=head1 VERSION =head1 VERSION
This document describes REST::Utils Version 0.4 This document describes REST::Utils Version 0.5
=cut =cut


our $VERSION = '0.4'; our $VERSION = '0.5';


=head1 DESCRIPTION =head1 DESCRIPTION
Expand Down Expand Up @@ -438,7 +438,7 @@ Jaldhar H. Vyas, C<< <jaldhar at braincells.com> >>
=head1 LICENSE AND COPYRIGHT =head1 LICENSE AND COPYRIGHT
Copyright (c) 2010 Consolidated Braincells Inc. All rights reserved. Copyright (c) 2012 Consolidated Braincells Inc. All rights reserved.
This distribution is free software; you can redistribute it and/or modify it This distribution is free software; you can redistribute it and/or modify it
under the terms of either: under the terms of either:
Expand Down

0 comments on commit c6d881a

Please sign in to comment.