diff --git a/Build.PL b/Build.PL index 7d9d807..146e56e 100644 --- a/Build.PL +++ b/Build.PL @@ -8,7 +8,7 @@ Module::Build->new( requires => { 'Apache::Session' => 0, 'JSON' => 0, }, recommends => { 'DBI' => 0, 'Net::LDAP' => 0.38, }, test_requires => { DBI => 0, 'DBD::SQLite' => 0, }, - dist_version => '1.3.1', + dist_version => '1.3.2', autosplit => [qw(lib/Apache/Session/Browseable/_common.pm)], configure_requires => { 'Module::Build' => 0, }, meta_merge => { diff --git a/Changes b/Changes index 09bfa01..62c34a7 100644 --- a/Changes +++ b/Changes @@ -1,5 +1,8 @@ Revision history for Perl extension Apache::Session::Browseable. +1.3.2 + - Allow sentinel list to be passed as a comma-delimited string + 1.3.1 - Fix typo on Oracle.pm (#15) - Postgres: ensure that returned @fields keep their original case (Closes: #17) diff --git a/MANIFEST b/MANIFEST index 180725a..b0c2957 100644 --- a/MANIFEST +++ b/MANIFEST @@ -35,6 +35,7 @@ MANIFEST META.json META.yml Module meta-data (added by MakeMaker) README.md +rpm/Apache-Session-Browseable.spec t/Apache-Session-Browseable-common.t t/Apache-Session-Browseable-DBI.t t/Apache-Session-Browseable-File.t diff --git a/META.json b/META.json index a85f615..3d69e31 100644 --- a/META.json +++ b/META.json @@ -39,7 +39,7 @@ "provides" : { "Apache::Session::Browseable" : { "file" : "lib/Apache/Session/Browseable.pm", - "version" : "v1.2.8" + "version" : "v1.3.2" }, "Apache::Session::Browseable::DBI" : { "file" : "lib/Apache/Session/Browseable/DBI.pm", @@ -83,7 +83,7 @@ }, "Apache::Session::Browseable::Redis" : { "file" : "lib/Apache/Session/Browseable/Redis.pm", - "version" : "v1.2.2" + "version" : "v1.3.2" }, "Apache::Session::Browseable::SQLite" : { "file" : "lib/Apache/Session/Browseable/SQLite.pm", @@ -119,7 +119,7 @@ }, "Apache::Session::Browseable::Store::Redis" : { "file" : "lib/Apache/Session/Browseable/Store/Redis.pm", - "version" : "v1.2.2" + "version" : "v1.3.2" }, "Apache::Session::Browseable::Store::SQLite" : { "file" : "lib/Apache/Session/Browseable/Store/SQLite.pm", @@ -155,6 +155,6 @@ "url" : "https://github.com/LemonLDAPNG/Apache-Session-Browseable" } }, - "version" : "v1.3.1", + "version" : "v1.3.2", "x_serialization_backend" : "JSON::PP version 2.97001" } diff --git a/META.yml b/META.yml index e426794..c3e2eca 100644 --- a/META.yml +++ b/META.yml @@ -17,7 +17,7 @@ name: Apache-Session-Browseable provides: Apache::Session::Browseable: file: lib/Apache/Session/Browseable.pm - version: v1.2.8 + version: v1.3.2 Apache::Session::Browseable::DBI: file: lib/Apache/Session/Browseable/DBI.pm version: v1.2.7 @@ -50,7 +50,7 @@ provides: version: v1.3.1 Apache::Session::Browseable::Redis: file: lib/Apache/Session/Browseable/Redis.pm - version: v1.2.2 + version: v1.3.2 Apache::Session::Browseable::SQLite: file: lib/Apache/Session/Browseable/SQLite.pm version: v1.2.2 @@ -77,7 +77,7 @@ provides: version: v1.2.2 Apache::Session::Browseable::Store::Redis: file: lib/Apache/Session/Browseable/Store/Redis.pm - version: v1.2.2 + version: v1.3.2 Apache::Session::Browseable::Store::SQLite: file: lib/Apache/Session/Browseable/Store/SQLite.pm version: v1.2.7 @@ -105,5 +105,5 @@ requires: resources: license: http://dev.perl.org/licenses/ repository: https://github.com/LemonLDAPNG/Apache-Session-Browseable -version: v1.3.1 +version: v1.3.2 x_serialization_backend: 'CPAN::Meta::YAML version 0.018' diff --git a/lib/Apache/Session/Browseable.pm b/lib/Apache/Session/Browseable.pm index ba592bc..92c5687 100644 --- a/lib/Apache/Session/Browseable.pm +++ b/lib/Apache/Session/Browseable.pm @@ -1,6 +1,6 @@ package Apache::Session::Browseable; -our $VERSION = '1.2.8'; +our $VERSION = '1.3.2'; print STDERR "Use a sub module of Apache::Session::Browseable such as Apache::Session::Browseable::File"; diff --git a/lib/Apache/Session/Browseable/Redis.pm b/lib/Apache/Session/Browseable/Redis.pm index df2c92c..379d127 100644 --- a/lib/Apache/Session/Browseable/Redis.pm +++ b/lib/Apache/Session/Browseable/Redis.pm @@ -9,7 +9,7 @@ use Apache::Session::Lock::Null; use Apache::Session::Serialize::JSON; use Apache::Session::Browseable::_common; -our $VERSION = '1.2.2'; +our $VERSION = '1.3.2'; our @ISA = qw(Apache::Session); our $redis = $Apache::Session::Browseable::Store::Redis::redis; diff --git a/lib/Apache/Session/Browseable/Store/Redis.pm b/lib/Apache/Session/Browseable/Store/Redis.pm index 4c83b11..5a698c7 100644 --- a/lib/Apache/Session/Browseable/Store/Redis.pm +++ b/lib/Apache/Session/Browseable/Store/Redis.pm @@ -2,7 +2,7 @@ package Apache::Session::Browseable::Store::Redis; use strict; -our $VERSION = '1.2.2'; +our $VERSION = '1.3.2'; our $redis; BEGIN {