Skip to content

Commit

Permalink
Checking in changes prior to tagging of version 0.08.
Browse files Browse the repository at this point in the history
Changelog diff is:

diff --git a/Changes b/Changes
index 353ca76..3340bed 100644
--- a/Changes
+++ b/Changes
@@ -1,5 +1,10 @@
 Revision history for Perl extension Router::Simple

+0.08
+
+        - fix "Can't use an undefined value as a HASH reference" error for $route->{dest}
+          (tomi-ru++)
+
 0.07

         - modified to allow to use extended regexp (?:including ":" - colon) as pattern
  • Loading branch information
tokuhirom committed Feb 16, 2011
1 parent ab90cb7 commit 89b1d15
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions Changes
@@ -1,5 +1,10 @@
Revision history for Perl extension Router::Simple

0.08

- fix "Can't use an undefined value as a HASH reference" error for $route->{dest}
(tomi-ru++)

0.07

- modified to allow to use extended regexp (?:including ":" - colon) as pattern
Expand Down
4 changes: 2 additions & 2 deletions README.mkdn
Expand Up @@ -188,11 +188,11 @@ Tatsuhiko Miyagawa

Shawn M Moore

L<routes.py|http://routes.groovie.org/>.
[routes.py](http://routes.groovie.org/).

# SEE ALSO

Router::Simple is inspired by L<routes.py|http://routes.groovie.org/>.
Router::Simple is inspired by [routes.py](http://routes.groovie.org/).

[Path::Dispatcher](http://search.cpan.org/perldoc?Path::Dispatcher) is similar, but so complex.

Expand Down
2 changes: 1 addition & 1 deletion lib/Router/Simple.pm
Expand Up @@ -2,7 +2,7 @@ package Router::Simple;
use strict;
use warnings;
use 5.00800;
our $VERSION = '0.07';
our $VERSION = '0.08';
use Router::Simple::SubMapper;
use Router::Simple::Route;
use List::Util qw/max/;
Expand Down

0 comments on commit 89b1d15

Please sign in to comment.