Skip to content

Commit

Permalink
0.0.21
Browse files Browse the repository at this point in the history
  • Loading branch information
titsuki committed Mar 20, 2023
1 parent 818c553 commit 81c342f
Show file tree
Hide file tree
Showing 18 changed files with 23 additions and 17 deletions.
6 changes: 6 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@ Revision history for Chart-Gnuplot

{{$NEXT}}

0.0.21 2023-03-20T13:31:50+09:00
- Fixes:
- Fix debug option as it enables to output both user input and reply from gnuplot [#47]
- Additions:
- Efficiency:

0.0.20 2021-05-01T13:26:55+09:00
- Fixes:
- Set TEXDIR explicitly for removing dependence on kpsewhich [#44]
Expand Down
2 changes: 1 addition & 1 deletion META6.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,5 @@
],
"test-depends": [
],
"version": "0.0.20"
"version": "0.0.21"
}
2 changes: 1 addition & 1 deletion lib/Chart/Gnuplot.pm6
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use v6;
unit class Chart::Gnuplot:ver<0.0.20>;
unit class Chart::Gnuplot:ver<0.0.21>;

use Chart::Gnuplot::Arrow;
use Chart::Gnuplot::Border;
Expand Down
2 changes: 1 addition & 1 deletion lib/Chart/Gnuplot/Arrow.pm6
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use v6;
unit class Chart::Gnuplot::Arrow:ver<0.0.20>;
unit class Chart::Gnuplot::Arrow:ver<0.0.21>;

use Chart::Gnuplot::Util;
use Chart::Gnuplot::Subset;
Expand Down
2 changes: 1 addition & 1 deletion lib/Chart/Gnuplot/Border.pm6
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use v6;
unit class Chart::Gnuplot::Border:ver<0.0.20>;
unit class Chart::Gnuplot::Border:ver<0.0.21>;

use Chart::Gnuplot::Subset;

Expand Down
2 changes: 1 addition & 1 deletion lib/Chart/Gnuplot/CustomBuilder.pm6
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use Zef::Fetch;
use Zef::Extract;
use Distribution::Builder::MakeFromJSON;

class Chart::Gnuplot::CustomBuilder:ver<0.0.20> is Distribution::Builder::MakeFromJSON {
class Chart::Gnuplot::CustomBuilder:ver<0.0.21> is Distribution::Builder::MakeFromJSON {
method build(IO() $work-dir = $*CWD) {
my $workdir = ~$work-dir;
if $*DISTRO.is-win {
Expand Down
2 changes: 1 addition & 1 deletion lib/Chart/Gnuplot/Grid.pm6
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use v6;
unit class Chart::Gnuplot::Grid:ver<0.0.20>;
unit class Chart::Gnuplot::Grid:ver<0.0.21>;

use Chart::Gnuplot::Subset;

Expand Down
2 changes: 1 addition & 1 deletion lib/Chart/Gnuplot/Label.pm6
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use v6;
unit class Chart::Gnuplot::Label:ver<0.0.20>;
unit class Chart::Gnuplot::Label:ver<0.0.21>;

use Chart::Gnuplot::Util;
use Chart::Gnuplot::Subset;
Expand Down
2 changes: 1 addition & 1 deletion lib/Chart/Gnuplot/Legend.pm6
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use v6;
unit class Chart::Gnuplot::Legend:ver<0.0.20>;
unit class Chart::Gnuplot::Legend:ver<0.0.21>;

use Chart::Gnuplot::Util;
use Chart::Gnuplot::Subset;
Expand Down
2 changes: 1 addition & 1 deletion lib/Chart/Gnuplot/Object.pm6
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use v6;
unit class Chart::Gnuplot::Object:ver<0.0.20>;
unit class Chart::Gnuplot::Object:ver<0.0.21>;

use Chart::Gnuplot::Util;
use Chart::Gnuplot::Subset;
Expand Down
2 changes: 1 addition & 1 deletion lib/Chart/Gnuplot/Output.pm6
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use v6;
unit class Chart::Gnuplot::Output:ver<0.0.20>;
unit class Chart::Gnuplot::Output:ver<0.0.21>;

has Str $!filename;
has &!writer;
Expand Down
2 changes: 1 addition & 1 deletion lib/Chart/Gnuplot/Range.pm6
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use v6;
unit class Chart::Gnuplot::Range:ver<0.0.20>;
unit class Chart::Gnuplot::Range:ver<0.0.21>;

use Chart::Gnuplot::Subset;

Expand Down
2 changes: 1 addition & 1 deletion lib/Chart/Gnuplot/Subset.pm6
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use v6;
unit module Chart::Gnuplot::Subset:ver<0.0.20>;
unit module Chart::Gnuplot::Subset:ver<0.0.21>;

subset FalseOnly of Bool is export where { $_ ~~ Bool:U or $_ === False };
subset TrueOnly of Bool is export where { $_ ~~ Bool:U or $_ === True};
Expand Down
2 changes: 1 addition & 1 deletion lib/Chart/Gnuplot/Terminal.pm6
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use v6;
unit class Chart::Gnuplot::Terminal:ver<0.0.20>;
unit class Chart::Gnuplot::Terminal:ver<0.0.21>;

has Str $!type;
has &!writer;
Expand Down
2 changes: 1 addition & 1 deletion lib/Chart/Gnuplot/Tics.pm6
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use v6;
unit class Chart::Gnuplot::Tics:ver<0.0.20>;
unit class Chart::Gnuplot::Tics:ver<0.0.21>;

use Chart::Gnuplot::Util;
use Chart::Gnuplot::Subset;
Expand Down
2 changes: 1 addition & 1 deletion lib/Chart/Gnuplot/Timestamp.pm6
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use v6;
unit class Chart::Gnuplot::Timestamp:ver<0.0.20>;
unit class Chart::Gnuplot::Timestamp:ver<0.0.21>;

use Chart::Gnuplot::Util;
use Chart::Gnuplot::Subset;
Expand Down
2 changes: 1 addition & 1 deletion lib/Chart/Gnuplot/Title.pm6
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use v6;
unit class Chart::Gnuplot::Title:ver<0.0.20>;
unit class Chart::Gnuplot::Title:ver<0.0.21>;

use Chart::Gnuplot::Util;

Expand Down
2 changes: 1 addition & 1 deletion lib/Chart/Gnuplot/Util.pm6
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
use v6;
unit class Chart::Gnuplot::Util:ver<0.0.20>;
unit class Chart::Gnuplot::Util:ver<0.0.21>;

use Chart::Gnuplot::Subset;

Expand Down

0 comments on commit 81c342f

Please sign in to comment.