Skip to content

Commit

Permalink
0.3.13
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Aug 21, 2024
1 parent 0b34264 commit 382e1e8
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions Changes
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@ Revision history for App-Rak

{{$NEXT}}

0.3.13 2024-08-21T21:12:20+02:00
- Remove unnecessary hypering from --unicode
- Bump "Needle::Compile" to get several regex / $/ fixes
- Bump "rak" to get several ParaSeq fixes

0.3.12 2024-08-20T16:21:00+02:00
- Make --modify-files present the target without line endings
by default. Specify --with-line-endings if you want them
Expand Down
8 changes: 4 additions & 4 deletions META6.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@
"CLI::Version:ver<0.0.9>:auth<zef:lizmat>",
"highlighter:ver<0.0.21>:auth<zef:lizmat>",
"IO::Path::AutoDecompress:ver<0.0.3>:auth<zef:lizmat>",
"JSON::Fast::Hyper:ver<0.0.7>:auth<zef:lizmat>",
"JSON::Fast::Hyper:ver<0.0.9+>:auth<zef:lizmat>",
"META::constants:ver<0.0.4>:auth<zef:lizmat>",
"Needle::Compile:ver<0.0.7>:auth<zef:lizmat>",
"rak:ver<0.0.62>:auth<zef:lizmat>",
"Needle::Compile:ver<0.0.9>:auth<zef:lizmat>",
"rak:ver<0.0.63>:auth<zef:lizmat>",
"String::Utils:ver<0.0.28+>:auth<zef:lizmat>"
],
"description": "21st century grep / find / ack / ag / rg on steroids",
Expand Down Expand Up @@ -59,5 +59,5 @@
],
"test-depends": [
],
"version": "0.3.12"
"version": "0.3.13"
}
10 changes: 5 additions & 5 deletions lib/App/Rak.rakumod
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# The modules that we need here, with their full identities
use as-cli-arguments:ver<0.0.8>:auth<zef:lizmat>; # as-cli-arguments
use as-cli-arguments:ver<0.0.8>:auth<zef:lizmat>; # as-cli-arguments
use IO::Path::AutoDecompress:ver<0.0.3>:auth<zef:lizmat>; # IOAD
use JSON::Fast::Hyper:ver<0.0.7>:auth<zef:lizmat>; # from-json to-json
use JSON::Fast::Hyper:ver<0.0.9+>:auth<zef:lizmat>; # from-json to-json
use META::constants:ver<0.0.4>:auth<zef:lizmat> $?DISTRIBUTION;
use rak:ver<0.0.62>:auth<zef:lizmat>; # rak Rak
use rak:ver<0.0.63>:auth<zef:lizmat>; # rak Rak

use Backtrace::Files:ver<0.0.4>:auth<zef:lizmat> <
backtrace-files
>;
use highlighter:ver<0.0.21>:auth<zef:lizmat> <
columns highlighter
>;
use Needle::Compile:ver<0.0.7>:auth<zef:lizmat> <
use Needle::Compile:ver<0.0.9>:auth<zef:lizmat> <
compile-needle implicit2explicit StrType Type
>;
use String::Utils:ver<0.0.28+>:auth<zef:lizmat> <
Expand Down Expand Up @@ -3583,7 +3583,7 @@ my sub action-unicode(--> Nil) {
class Unicodes {
method lines() {
(0..0x10FFFF).hyper(batch => 2048).map: {
(0..0x10FFFF).map: {
my $uniname := .uniname;
$uniname
unless $uniname.starts-with('<') && $uniname.ends-with('>')
Expand Down

0 comments on commit 382e1e8

Please sign in to comment.