summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2015-07-14 21:01:45 -0700
committerFranck Cuny <franckcuny@gmail.com>2015-07-14 21:01:45 -0700
commit90d37555e7871a1b9983c4d4eec5eff52074c21e (patch)
tree0a9a84f7ff083efaec3cc2c50b8fea7b872dd504
parentUpdate changelog with correct information (diff)
downloadplack-middleware-etag-master.tar.gz
Prepare release for version 0.05.master
-rw-r--r--Changes3
-rw-r--r--dist.ini2
-rw-r--r--lib/Plack/Middleware/ETag.pm2
3 files changed, 4 insertions, 3 deletions
diff --git a/Changes b/Changes
index 3e532f1..3909a85 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,8 @@
Revision history for Perl extension Plack::Middleware::ETag
+0.05 Tue Jul 14 2015
+ - Update to correct version
+
0.04 Tue Jul 14 2015
- Fix off-by-one error while checking the result of the `stat` function.
We were looking for the inode information at the wrong index. This
diff --git a/dist.ini b/dist.ini
index ba7e207..c81c287 100644
--- a/dist.ini
+++ b/dist.ini
@@ -3,7 +3,7 @@ author = Franck Cuny <franckcuny@gmail.com>
license = Perl_5
copyright_holder = Franck Cuny
copyright_year = 2015
-version = 0.04
+version = 0.05
[@Filter]
bundle = @Basic
diff --git a/lib/Plack/Middleware/ETag.pm b/lib/Plack/Middleware/ETag.pm
index 86912f4..a57db5e 100644
--- a/lib/Plack/Middleware/ETag.pm
+++ b/lib/Plack/Middleware/ETag.pm
@@ -9,8 +9,6 @@ use Plack::Util;
use Plack::Util::Accessor
qw( file_etag cache_control check_last_modified_header);
-our $VERSION = '0.03';
-
use parent qw/Plack::Middleware/;
sub call {