Skip to content
This repository has been archived by the owner on Apr 30, 2021. It is now read-only.

Commit

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

diff --git a/Changes b/Changes
index a77d1d9..2170368 100644
--- a/Changes
+++ b/Changes
@@ -2,6 +2,13 @@ Revision history for perl module SockJS

 {{$NEXT}}

+0.06 2018-08-26T18:25:58Z
+
+ - use IO::String in tests for more compatibility with older perls
+ - add more test dependencies
+ - add Build.PL to make it installable from git
+ - add travis
+
 0.05 2018-08-26T17:55:24Z

  - do not use 5.10 features
  • Loading branch information
vti committed Aug 26, 2018
1 parent 0d4b4e5 commit 660cf9b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
7 changes: 7 additions & 0 deletions Changes
Expand Up @@ -2,6 +2,13 @@ Revision history for perl module SockJS

{{$NEXT}}

0.06 2018-08-26T18:25:58Z

- use IO::String in tests for more compatibility with older perls
- add more test dependencies
- add Build.PL to make it installable from git
- add travis

0.05 2018-08-26T17:55:24Z

- do not use 5.10 features
Expand Down
4 changes: 3 additions & 1 deletion META.json
Expand Up @@ -43,9 +43,11 @@
"runtime" : {
"requires" : {
"AnyEvent" : "0",
"IO::String" : "0",
"JSON" : "0",
"Plack" : "0",
"Protocol::WebSocket" : "0",
"Test::Fatal" : "0",
"Test::MonkeyMock" : "0",
"Test::More" : "0"
}
Expand All @@ -63,7 +65,7 @@
"web" : "https://github.com/vti/sockjs-perl"
}
},
"version" : "0.05",
"version" : "0.06",
"x_contributors" : [
"BlueT - Matthew Lien - 練喆明 <BlueT@BlueT.org>",
"vti <viacheslav.t@gmail.com>"
Expand Down
2 changes: 1 addition & 1 deletion lib/SockJS.pm
Expand Up @@ -3,7 +3,7 @@ package SockJS;
use strict;
use warnings;

our $VERSION = '0.05';
our $VERSION = '0.06';

use overload '&{}' => sub { shift->to_app(@_) }, fallback => 1;

Expand Down

0 comments on commit 660cf9b

Please sign in to comment.