Skip to content

Commit

Permalink
VERSION 1.130 (CHANGES, TODO updates)
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexis Sukrieh committed Jan 29, 2010
1 parent 4365d90 commit 7ca36e1
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 13 deletions.
15 changes: 14 additions & 1 deletion CHANGES
@@ -1,7 +1,20 @@
Dancer 1.123~
Dancer 1.130
* Fix a memory leak that could occur between two
requests under mod_perl (Thanks to Nicolas Rennert for
the report and diagnosis).
* remove all optional modules from the core, they are now
shipped as separate CPAN distributions:
- Dancer::Template::MicroTemplate
- Dancer::Session::Cookie
- Dancer::Session::Memcached
- Dancer::Logger::LogHandler
- Dancer::Logger::Syslog
* support for the `header' keyword in Dancer's syntax.
The user is now able to alter response-headers in route
handlers.
* support for `prefix' keyword in Dancer's syntax.
A prefix can be set by the user before defining routes handlers.
All route defined then will be automatically prefixed accordingly.

Dancer 1.122

Expand Down
21 changes: 10 additions & 11 deletions ROADMAP
@@ -1,21 +1,20 @@

Dancer 1.300

[ ] Make Dancer a "core" distribution and
extract optional modules to separate
distributions (such as template engines,
session engines, ...)

[ ] Documentation review/refresh/rewrite

Dancer 1.200

[X] Remove the CGI.pm dependency
[ ] Support for file uploads
[ ] Provide a default dispatcher in
scaffolded applications.
[ ] Support for the 'header' helper in syntax


Dancer 1.130

[X] Support for the 'header' helper in syntax
for altering response headers from a route handler.
[X] Make Dancer a "core" distribution and
extract optional modules to separate
distributions (such as template engines,
session engines, ...)


Dancer 1.000

Expand Down
2 changes: 1 addition & 1 deletion lib/Dancer.pm
Expand Up @@ -22,7 +22,7 @@ use Dancer::Handler;
use base 'Exporter';

$AUTHORITY = 'SUKRIA';
$VERSION = '1.123';
$VERSION = '1.130';
@EXPORT = qw(
any
before
Expand Down

0 comments on commit 7ca36e1

Please sign in to comment.