Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 1.10.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git Changes Changes
index c4e25aa..069b83f 100644
--- Changes
+++ Changes
@@ -2,6 +2,10 @@ Revision history for Perl extension HTTP-Session2

 {{$NEXT}}

+1.10 2018-01-26T05:01:07Z
+
+    - Validate session ID
+
 1.09 2014-09-01T02:22:09Z

     - Catch the exception thrown from deserializer.
  • Loading branch information
tokuhirom committed Jan 26, 2018
1 parent 813838f commit cb4b329
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 62 deletions.
57 changes: 2 additions & 55 deletions Build.PL
Expand Up @@ -4,62 +4,9 @@
# =========================================================================

use 5.008_001;

use strict;
use warnings;
use utf8;

use Module::Build;
use File::Basename;
use File::Spec;

my %args = (
license => 'perl',
dynamic_config => 0,

configure_requires => {
'Module::Build' => 0.38,
},

name => 'HTTP-Session2',
module_name => 'HTTP::Session2',
allow_pureperl => 0,

script_files => [glob('script/*'), glob('bin/*')],
c_source => [qw()],
PL_files => {},

test_files => ((-d '.git' || $ENV{RELEASE_TESTING}) && -d 'xt') ? 't/ xt/' : 't/',
recursive_test_files => 1,


);
if (-d 'share') {
$args{share_dir} = 'share';
}

my $builder = Module::Build->subclass(
class => 'MyBuilder',
code => q{
sub ACTION_distmeta {
die "Do not run distmeta. Install Minilla and `minil install` instead.\n";
}
sub ACTION_installdeps {
die "Do not run installdeps. Run `cpanm --installdeps .` instead.\n";
}
}
)->new(%args);
$builder->create_build_script();

use File::Copy;

print "cp META.json MYMETA.json\n";
copy("META.json","MYMETA.json") or die "Copy failed(META.json): $!";
use Module::Build::Tiny 0.035;

if (-f 'META.yml') {
print "cp META.yml MYMETA.yml\n";
copy("META.yml","MYMETA.yml") or die "Copy failed(META.yml): $!";
} else {
print "There is no META.yml... You may install this module from the repository...\n";
}
Build_PL();

4 changes: 4 additions & 0 deletions Changes
Expand Up @@ -2,6 +2,10 @@ Revision history for Perl extension HTTP-Session2

{{$NEXT}}

1.10 2018-01-26T05:01:07Z

- Validate session ID

1.09 2014-09-01T02:22:09Z

- Catch the exception thrown from deserializer.
Expand Down
9 changes: 5 additions & 4 deletions META.json
Expand Up @@ -4,7 +4,7 @@
"tokuhirom <tokuhirom@gmail.com>"
],
"dynamic_config" : 0,
"generated_by" : "Minilla/v2.1.1, CPAN::Meta::Converter version 2.141520",
"generated_by" : "Minilla/v3.0.9, CPAN::Meta::Converter version 2.150010",
"license" : [
"perl_5"
],
Expand All @@ -28,7 +28,7 @@
"prereqs" : {
"configure" : {
"requires" : {
"Module::Build" : "0.38"
"Module::Build::Tiny" : "0.035"
}
},
"develop" : {
Expand Down Expand Up @@ -77,9 +77,10 @@
"web" : "https://github.com/tokuhirom/HTTP-Session2"
}
},
"version" : "1.09",
"version" : "1.10",
"x_contributors" : [
"magai <xxmagai@gmail.com>",
"Songmu <y.songmu@gmail.com>"
]
],
"x_serialization_backend" : "JSON::PP version 2.27400"
}
2 changes: 1 addition & 1 deletion README.md
@@ -1,4 +1,4 @@
[![Build Status](https://travis-ci.org/tokuhirom/HTTP-Session2.png?branch=master)](https://travis-ci.org/tokuhirom/HTTP-Session2) [![Coverage Status](https://coveralls.io/repos/tokuhirom/HTTP-Session2/badge.png?branch=master)](https://coveralls.io/r/tokuhirom/HTTP-Session2?branch=master)
[![Build Status](https://travis-ci.org/tokuhirom/HTTP-Session2.svg?branch=master)](https://travis-ci.org/tokuhirom/HTTP-Session2) [![Coverage Status](https://img.shields.io/coveralls/tokuhirom/HTTP-Session2/master.svg?style=flat)](https://coveralls.io/r/tokuhirom/HTTP-Session2?branch=master)
# NAME

HTTP::Session2 - HTTP session management
Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Session2.pm
Expand Up @@ -3,7 +3,7 @@ use 5.008005;
use strict;
use warnings;

our $VERSION = "1.09";
our $VERSION = "1.10";

1;
__END__
Expand Down
2 changes: 1 addition & 1 deletion lib/HTTP/Session2/ServerStore.pm
Expand Up @@ -4,7 +4,7 @@ use warnings;
use utf8;
use 5.008_001;

our $VERSION = "1.09";
our $VERSION = "1.10";

use Carp ();
use Digest::HMAC;
Expand Down

0 comments on commit cb4b329

Please sign in to comment.