Skip to content

Commit

Permalink
0.0.90
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Aug 30, 2022
1 parent 77668cd commit 70acdaf
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 1 deletion.
16 changes: 16 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion META6.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@
],
"test-depends": [
],
"version": "0.0.48"
"version": "0.0.90"
}
6 changes: 6 additions & 0 deletions options
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@

my $code = "lib/App/Rak.rakumod".IO.slurp;

.say for $code.match(/ '%n<' <( <-[>]>+ /, :g).map({
.words.Slip
}).unique.sort;

0 comments on commit 70acdaf

Please sign in to comment.