From 5063326fb7a5f56481747e441ce8be3bb677ff2d Mon Sep 17 00:00:00 2001 From: Elizabeth Mattijsen Date: Sun, 4 Aug 2024 16:17:07 +0200 Subject: [PATCH] Add dependency on Needle::Compile For now, does not do anything yet, just for CI purposes --- Changes | 6 ++++-- META6.json | 1 + lib/App/Rak.rakumod | 3 ++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index 7445f1c..d74e95a 100644 --- a/Changes +++ b/Changes @@ -1,8 +1,10 @@ Revision history for App-Rak {{$NEXT}} - - Upped all dependencies where applicable. - - Hoperfully fixed Windows CI for now. + - Added dependency on Needle::Compile to handle all the + pattern to Callable issues + - Upped all dependencies where applicable + - Hoperfully fixed Windows CI for now 0.3.2 2024-07-29T13:54:14+02:00 - Give each CSV file its own Text::CSV object, in the hope diff --git a/META6.json b/META6.json index f18e26f..30cd0be 100644 --- a/META6.json +++ b/META6.json @@ -14,6 +14,7 @@ "IO::Path::AutoDecompress:ver<0.0.3>:auth", "JSON::Fast::Hyper:ver<0.0.7>:auth", "META::constants:ver<0.0.4>:auth", + "Needle::Compile:ver<0.0.4>:auth", "rak:ver<0.0.59>:auth", "String::Utils:ver<0.0.24+>:auth" ], diff --git a/lib/App/Rak.rakumod b/lib/App/Rak.rakumod index 5be3496..4e14a3e 100644 --- a/lib/App/Rak.rakumod +++ b/lib/App/Rak.rakumod @@ -1,10 +1,11 @@ # The modules that we need here, with their full identities use as-cli-arguments:ver<0.0.8>:auth; # as-cli-arguments use has-word:ver<0.0.4>:auth; # has-word -use highlighter:ver<0.0.19>:auth; # columns highlighter matches Type +use highlighter:ver<0.0.19>:auth; # columns highlighter matches use IO::Path::AutoDecompress:ver<0.0.3>:auth; # IOAD use JSON::Fast::Hyper:ver<0.0.7>:auth; # from-json to-json use META::constants:ver<0.0.4>:auth $?DISTRIBUTION; +use Needle::Compile:ver<0.0.4>:auth; # compile-needle Type use rak:ver<0.0.59>:auth; # rak Rak use Backtrace::Files:ver<0.0.4>:auth <