Skip to content

Commit

Permalink
Release 1.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
guimard committed Jul 4, 2019
1 parent e8b5d29 commit 42354d2
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 12 deletions.
2 changes: 1 addition & 1 deletion Build.PL
Original file line number Diff line number Diff line change
Expand Up @@ -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 => {
Expand Down
3 changes: 3 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
1 change: 1 addition & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down Expand Up @@ -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"
}
8 changes: 4 additions & 4 deletions META.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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'
2 changes: 1 addition & 1 deletion lib/Apache/Session/Browseable.pm
Original file line number Diff line number Diff line change
@@ -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";

Expand Down
2 changes: 1 addition & 1 deletion lib/Apache/Session/Browseable/Redis.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion lib/Apache/Session/Browseable/Store/Redis.pm
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 42354d2

Please sign in to comment.