From 243b6aec308abc154fad33bd31e2372dec3b5a40 Mon Sep 17 00:00:00 2001 From: Yadd Date: Thu, 25 Mar 2021 17:57:00 +0100 Subject: [PATCH] Prepare 0.21 --- Changes | 5 ++++- lib/Apache/Session/MongoDB.pm | 2 +- lib/Apache/Session/Store/MongoDB.pm | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index 612474b..da027ca 100644 --- a/Changes +++ b/Changes @@ -1,7 +1,10 @@ Revision history for Perl extension Apache::Session::MongoDB. +0.21 Thu Mar 25 16:53:32 2021 + - Die when session isn't found. Closes: #12 + 0.20 Thu Sep 26 21:23:35 2019 - - Fix serchOn return value. Thanks to Maxime Besson. Closes: #8 + - Fix searchOn return value. Thanks to Maxime Besson. Closes: #8 0.19 Thu Apr 26 08:36:07 2019 - Replace deprecated MongoDB function (insert => insert_one, diff --git a/lib/Apache/Session/MongoDB.pm b/lib/Apache/Session/MongoDB.pm index 8dda1be..2ad53bb 100644 --- a/lib/Apache/Session/MongoDB.pm +++ b/lib/Apache/Session/MongoDB.pm @@ -4,7 +4,7 @@ use 5.010; use strict; use AutoLoader 'AUTOLOAD'; -our $VERSION = '0.20'; +our $VERSION = '0.21'; our @ISA = qw(Apache::Session); use Apache::Session; diff --git a/lib/Apache/Session/Store/MongoDB.pm b/lib/Apache/Session/Store/MongoDB.pm index a265393..9abbbf7 100644 --- a/lib/Apache/Session/Store/MongoDB.pm +++ b/lib/Apache/Session/Store/MongoDB.pm @@ -3,7 +3,7 @@ package Apache::Session::Store::MongoDB; use 5.010; use strict; -our $VERSION = '0.19'; +our $VERSION = '0.21'; use MongoDB;