diff --git a/Changes b/Changes index ce81fa5..e79b8fc 100644 --- a/Changes +++ b/Changes @@ -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 diff --git a/META6.json b/META6.json index 3dd3ee6..6387d3a 100644 --- a/META6.json +++ b/META6.json @@ -11,10 +11,10 @@ "CLI::Version:ver<0.0.9>:auth", "highlighter:ver<0.0.21>:auth", "IO::Path::AutoDecompress:ver<0.0.3>:auth", - "JSON::Fast::Hyper:ver<0.0.7>:auth", + "JSON::Fast::Hyper:ver<0.0.9+>:auth", "META::constants:ver<0.0.4>:auth", - "Needle::Compile:ver<0.0.7>:auth", - "rak:ver<0.0.62>:auth", + "Needle::Compile:ver<0.0.9>:auth", + "rak:ver<0.0.63>:auth", "String::Utils:ver<0.0.28+>:auth" ], "description": "21st century grep / find / ack / ag / rg on steroids", @@ -59,5 +59,5 @@ ], "test-depends": [ ], - "version": "0.3.12" + "version": "0.3.13" } diff --git a/lib/App/Rak.rakumod b/lib/App/Rak.rakumod index 9e73fbf..0a94450 100644 --- a/lib/App/Rak.rakumod +++ b/lib/App/Rak.rakumod @@ -1,9 +1,9 @@ # The modules that we need here, with their full identities -use as-cli-arguments:ver<0.0.8>:auth; # as-cli-arguments +use as-cli-arguments:ver<0.0.8>:auth; # as-cli-arguments use IO::Path::AutoDecompress:ver<0.0.3>:auth; # IOAD -use JSON::Fast::Hyper:ver<0.0.7>:auth; # from-json to-json +use JSON::Fast::Hyper:ver<0.0.9+>:auth; # from-json to-json use META::constants:ver<0.0.4>:auth $?DISTRIBUTION; -use rak:ver<0.0.62>:auth; # rak Rak +use rak:ver<0.0.63>:auth; # rak Rak use Backtrace::Files:ver<0.0.4>:auth < backtrace-files @@ -11,7 +11,7 @@ use Backtrace::Files:ver<0.0.4>:auth < use highlighter:ver<0.0.21>:auth < columns highlighter >; -use Needle::Compile:ver<0.0.7>:auth < +use Needle::Compile:ver<0.0.9>:auth < compile-needle implicit2explicit StrType Type >; use String::Utils:ver<0.0.28+>:auth < @@ -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('>')