Skip to content

Commit 4b1ce42

Browse files
committed
Bump versions for release
1 parent 5189f84 commit 4b1ce42

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

META.info

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"perl" : "6.c",
33
"name" : "IRC::Client",
4-
"version" : "2.001002",
4+
"version" : "2.003001",
55
"description" : "Extendable Internet Relay Chat client",
66
"depends" : [ "Data::Dump" ],
77
"test-depends" : [ "Test" ],

lib/IRC/Client.pm6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ use v6;
22
use IRC::Parser; # parse-irc
33
use IRC::Client::Plugin::PingPong;
44
use IRC::Client::Plugin;
5-
unit class IRC::Client:ver<2.002001>;
5+
unit class IRC::Client:ver<2.003001>;
66

77
has Bool:D $.debug = False;
88
has Str:D $.host = 'localhost';

lib/IRC/Client/Plugin.pm6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
constant IRC_HANDLED = "irc plugin handled \x1";
22
constant IRC_NOT_HANDLED = "irc plugin not-handled \x2";
3-
unit class IRC::Client::Plugin:ver<2.002001>;
3+
unit class IRC::Client::Plugin:ver<2.003001>;

lib/IRC/Client/Plugin/Debugger.pm6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use Data::Dump;
22
use IRC::Client::Plugin;
3-
unit class IRC::Client::Plugin::Debugger:ver<2.002001> is IRC::Client::Plugin;
3+
unit class IRC::Client::Plugin::Debugger:ver<2.003001> is IRC::Client::Plugin;
44

55
method irc-all-events ($irc, $e) {
66
say Dump $e, :indent(4);

lib/IRC/Client/Plugin/PingPong.pm6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
unit class IRC::Client::Plugin::PingPong:ver<2.002001>;
1+
unit class IRC::Client::Plugin::PingPong:ver<2.003001>;
22
method irc-ping ($irc, $e) { $irc.ssay("PONG {$irc.nick} $e<params>[0]") }

lib/IRC/Grammar.pm6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
unit grammar IRC::Grammar:ver<2.002001>;
1+
unit grammar IRC::Grammar:ver<2.003001>;
22
token TOP { <message>+ }
33
token SPACE { ' '+ }
44
token message { [':' <prefix> <SPACE> ]? <command> <params> \n }

lib/IRC/Grammar/Actions.pm6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
unit class IRC::Grammar::Actions:ver<2.002001>;
1+
unit class IRC::Grammar::Actions:ver<2.003001>;
22
method TOP ($/) { $/.make: $<message>>>.made }
33
method message ($/) {
44
my $pref = $/<prefix>;

lib/IRC/Parser.pm6

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use IRC::Grammar;
22
use IRC::Grammar::Actions;
3-
unit class IRC::Parser:ver<2.002001>;
3+
unit class IRC::Parser:ver<2.003001>;
44

55
sub parse-irc (Str:D $input) is export {
66
IRC::Grammar.parse($input, actions => IRC::Grammar::Actions).made // [];

0 commit comments

Comments
 (0)