From 70acdaff7d739d12a1bec152c3ac090b543a5a9d Mon Sep 17 00:00:00 2001 From: Elizabeth Mattijsen Date: Tue, 30 Aug 2022 23:53:49 +0200 Subject: [PATCH] 0.0.90 --- Changes | 16 ++++++++++++++++ META6.json | 2 +- options | 6 ++++++ 3 files changed, 23 insertions(+), 1 deletion(-) create mode 100644 options diff --git a/Changes b/Changes index 268b7b0..3ff327d 100644 --- a/Changes +++ b/Changes @@ -2,6 +2,22 @@ Revision history for App-Rak {{$NEXT}} +0.0.90 2022-08-30T23:53:04+02:00 + - A complete rework of the internals. Instead of having its own + internal engine, now depends on the new "rak" module for the + plumbing. + - All of the options of earlier versions should still work, albeit + with maybe a changed name, or slightly different (better) semantics. + - Many, many new options available, most notably: + - many options for selecting files from path properties + - support for CSV files, based on Text::CSV + - can now look into whole file if necessary, rather than by line + - integrated statistics and frequencies options + - git checkout on partial names + - made some external dependencies optional + - This now starts the path to version 0.1, the first official beta + release. + 0.0.47 2022-08-09T12:59:56+02:00 - Make sure you can specify a ~/file with --files-from and --paths-from diff --git a/META6.json b/META6.json index c73f44d..d815c4e 100644 --- a/META6.json +++ b/META6.json @@ -54,5 +54,5 @@ ], "test-depends": [ ], - "version": "0.0.48" + "version": "0.0.90" } diff --git a/options b/options new file mode 100644 index 0000000..8f2f4ca --- /dev/null +++ b/options @@ -0,0 +1,6 @@ + +my $code = "lib/App/Rak.rakumod".IO.slurp; + +.say for $code.match(/ '%n<' <( <-[>]>+ /, :g).map({ + .words.Slip +}).unique.sort;