Skip to content

Commit

Permalink
Releasing v1.3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
guimard committed Mar 8, 2022
1 parent 94fa4ee commit 1288c77
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 10 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.9',
dist_version => '1.3.10',
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.10
- Add quote for fields in INSERT query

1.3.9
- Return number of deleted rows when called in array context.
See [LemonLDAP issue #2428](https://gitlab.ow2.org/lemonldap-ng/lemonldap-ng/-/issues/2428)
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.3.9"
"version" : "v1.3.10"
},
"Apache::Session::Browseable::DBI" : {
"file" : "lib/Apache/Session/Browseable/DBI.pm",
Expand Down Expand Up @@ -91,7 +91,7 @@
},
"Apache::Session::Browseable::Store::DBI" : {
"file" : "lib/Apache/Session/Browseable/Store/DBI.pm",
"version" : "v1.2.2"
"version" : "v1.3.10"
},
"Apache::Session::Browseable::Store::File" : {
"file" : "lib/Apache/Session/Browseable/Store/File.pm",
Expand Down Expand Up @@ -155,6 +155,6 @@
"url" : "https://github.com/LemonLDAPNG/Apache-Session-Browseable"
}
},
"version" : "v1.3.9",
"x_serialization_backend" : "JSON::PP version 4.04"
"version" : "v1.3.10",
"x_serialization_backend" : "JSON::PP version 4.06"
}
6 changes: 3 additions & 3 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.3.9
version: v1.3.10
Apache::Session::Browseable::DBI:
file: lib/Apache/Session/Browseable/DBI.pm
version: v1.3.9
Expand Down Expand Up @@ -56,7 +56,7 @@ provides:
version: v1.2.2
Apache::Session::Browseable::Store::DBI:
file: lib/Apache/Session/Browseable/Store/DBI.pm
version: v1.2.2
version: v1.3.10
Apache::Session::Browseable::Store::File:
file: lib/Apache/Session/Browseable/Store/File.pm
version: v1.2.2
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.9
version: v1.3.10
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.3.9';
our $VERSION = '1.3.10';

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/Store/DBI.pm
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package Apache::Session::Browseable::Store::DBI;
use strict;
use Apache::Session::Store::DBI;
our @ISA = qw(Apache::Session::Store::DBI);
our $VERSION = 1.2.2;
our $VERSION = 1.3.10;

sub insert {
my ( $self, $session ) = @_;
Expand Down

0 comments on commit 1288c77

Please sign in to comment.