diff options
-rw-r--r-- | Changes | 3 | ||||
-rw-r--r-- | dist.ini | 2 | ||||
-rw-r--r-- | lib/Plack/Middleware/ETag.pm | 2 |
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 { |