Skip to content

Commit bdc862c

Browse files
committed
style + release
1 parent 5e41d05 commit bdc862c

File tree

5 files changed

+3
-3
lines changed

5 files changed

+3
-3
lines changed

META6.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{ "name" : "Text::CSV",
2-
"version" : "0.020",
2+
"version" : "0.021",
33
"perl" : "6.d",
44
"description" : "Handle CSV data. API based on Perl's Text::CSV_XS",
55
"auth" : "zef:Tux",

lib/Text/CSV.rakumod

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use Slang::Tuxic;
44
use File::Temp;
55
use Text::IO::String;
66

7-
my $VERSION = "0.020";
7+
my $VERSION = "0.021";
88

99
my constant $opt_v = %*ENV<RAKU_VERBOSE> // 1;
1010

sandbox/issue-3.raku

100644100755
File mode changed.

sandbox/issue-32.raku

100644100755
File mode changed.

t/90_csv.t

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ for in () -> $in {
121121
inok ($in, csv (in => $in, csv => $csv), "Sub/Obj { s-in ($in) }");
122122
}
123123

124-
throws-like { csv( in=> Set.new() ) }, CSV::Diag,
124+
throws-like { csv (in => Set.new ()) }, CSV::Diag,
125125
"Fails with correct exception",
126126
message => /Unsupported/;
127127

0 commit comments

Comments
 (0)