Skip to content

Commit

Permalink
style + release
Browse files Browse the repository at this point in the history
  • Loading branch information
Tux committed Oct 30, 2023
1 parent 5e41d05 commit bdc862c
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion META6.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{ "name" : "Text::CSV",
"version" : "0.020",
"version" : "0.021",
"perl" : "6.d",
"description" : "Handle CSV data. API based on Perl's Text::CSV_XS",
"auth" : "zef:Tux",
Expand Down
2 changes: 1 addition & 1 deletion lib/Text/CSV.rakumod
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use Slang::Tuxic;
use File::Temp;
use Text::IO::String;

my $VERSION = "0.020";
my $VERSION = "0.021";

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

Expand Down
Empty file modified sandbox/issue-3.raku
100644 → 100755
Empty file.
Empty file modified sandbox/issue-32.raku
100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion t/90_csv.t
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ for in () -> $in {
inok ($in, csv (in => $in, csv => $csv), "Sub/Obj { s-in ($in) }");
}

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

Expand Down

0 comments on commit bdc862c

Please sign in to comment.