Skip to content

Commit

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

diff --git a/Changes b/Changes
index e638eaf..4605acb 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,10 @@ Revision history for Perl extension Kossy
 
 {{$NEXT}}
 
+0.63 2023-11-13T02:24:23Z
+
+        - Stabilize routing #22
+
 0.62 2023-11-09T08:56:51Z
 
         - Fixed JSON request #21
  • Loading branch information
kazeburo committed Nov 13, 2023
1 parent e34290a commit b3d38cc
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 9 deletions.
4 changes: 4 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@ Revision history for Perl extension Kossy

{{$NEXT}}

0.63 2023-11-13T02:24:23Z

- Stabilize routing #22

0.62 2023-11-09T08:56:51Z

- Fixed JSON request #21
Expand Down
4 changes: 2 additions & 2 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"Plack" : "1.0029",
"Plack::Middleware::ReverseProxy" : "0",
"Plack::Middleware::Static" : "0",
"Router::Boom" : "1.01",
"Router::Boom" : "1.03",
"Scalar::Util" : "0",
"Test::More" : "0.88",
"Text::Xslate" : "v3.2.4",
Expand Down Expand Up @@ -90,7 +90,7 @@
"web" : "https://github.com/kazeburo/Kossy"
}
},
"version" : "0.62",
"version" : "0.63",
"x_contributors" : [
"FUJIWARA Shunichiro <fujiwara.shunichiro@gmail.com>",
"Masahiro Nagano <kazeburo@gmail.com>",
Expand Down
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,13 @@ per-request object, herds request and response
- stash:HashRef
- args:HashRef

Router::Simple->match result
path parameters captured by Router::Boom

get '/user/:id' => sub {
my ($self, $c) = @_;
my $id = $c->args->{id};
...
};

- halt(status\_code, message)

Expand Down
2 changes: 1 addition & 1 deletion lib/Kossy.pm
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ use Kossy::Request;
use Kossy::Response;
use HTTP::Headers::Fast;

our $VERSION = '0.62';
our $VERSION = '0.63';
our @EXPORT = qw/new root_dir psgi build_app _router _connect get post router filter _wrap_filter/;

our $XSLATE_CACHE = 1;
Expand Down
2 changes: 1 addition & 1 deletion lib/Kossy/Connection.pm
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use Class::Accessor::Lite (
);
use Kossy::Exception;

our $VERSION = '0.62';
our $VERSION = '0.63';

# for IE7 JSON venularity.
# see http://www.atmarkit.co.jp/fcoding/articles/webapp/05/webapp05a.html
Expand Down
2 changes: 1 addition & 1 deletion lib/Kossy/Exception.pm
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use HTTP::Status;
use Text::Xslate qw/html_escape/;
use Kossy::Response;

our $VERSION = '0.62';
our $VERSION = '0.63';

sub new {
my $class = shift;
Expand Down
2 changes: 1 addition & 1 deletion lib/Kossy/Request.pm
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ use HTTP::Entity::Parser;
use WWW::Form::UrlEncoded qw/parse_urlencoded_arrayref build_urlencoded_utf8/;
use Cookie::Baker;

our $VERSION = '0.62';
our $VERSION = '0.63';

sub new {
my($class, $env, %opts) = @_;
Expand Down
2 changes: 1 addition & 1 deletion lib/Kossy/Response.pm
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ use Encode;
use HTTP::Headers::Fast;
use Cookie::Baker;

our $VERSION = '0.62';
our $VERSION = '0.63';

our $DIRECT;
our $SECURITY_HEADER = 1;
Expand Down
2 changes: 1 addition & 1 deletion script/kossy-setup
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ use strict;
use warnings;
use utf8;
our $VERSION = 0.62;
our $VERSION = 0.63;
1;
Expand Down

0 comments on commit b3d38cc

Please sign in to comment.