From: t0m Date: Fri, 21 Aug 2009 20:22:47 +0000 (+0100) Subject: Changelogging X-Git-Tag: 0.76 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=428ec4a28145f5871101c0c1986d75cc0bdb1025;p=catagits%2FCatalyst-Action-REST.git Changelogging --- diff --git a/Changes b/Changes index 4d1cbbb..b1fa316 100644 --- a/Changes +++ b/Changes @@ -1,3 +1,8 @@ +Fri Aug 21 21:20:52 BST 2009 (t0m) - Release 0.76 + + Added two new status response helpers (202 no content and 410 gone), + and tests - Franck Cuny + Mon Aug 17 14:07:41 BST 2009 (t0m) - Release 0.75 Fix optional test failures in catalyst-action-serialize-accept.t diff --git a/lib/Catalyst/Action/REST.pm b/lib/Catalyst/Action/REST.pm index dc34289..c9d336e 100644 --- a/lib/Catalyst/Action/REST.pm +++ b/lib/Catalyst/Action/REST.pm @@ -17,7 +17,7 @@ use Catalyst::Controller::REST; BEGIN { require 5.008001; } -our $VERSION = '0.75'; +our $VERSION = '0.76'; $VERSION = eval $VERSION; sub new { diff --git a/lib/Catalyst/Controller/REST.pm b/lib/Catalyst/Controller/REST.pm index d185a0b..1e72127 100644 --- a/lib/Catalyst/Controller/REST.pm +++ b/lib/Catalyst/Controller/REST.pm @@ -2,7 +2,7 @@ package Catalyst::Controller::REST; use strict; use warnings; -our $VERSION = '0.75'; +our $VERSION = '0.76'; $VERSION = eval $VERSION; =head1 NAME