Skip to content

Commit

Permalink
CI check after upping all dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
lizmat committed Jul 29, 2024
1 parent 30ceeeb commit a95b569
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 18 deletions.
18 changes: 9 additions & 9 deletions META6.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
"build-depends": [
],
"depends": [
"as-cli-arguments:ver<0.0.7>:auth<zef:lizmat>",
"Backtrace::Files:ver<0.0.3>:auth<zef:lizmat>",
"CLI::Version:ver<0.0.8>:auth<zef:lizmat>",
"has-word:ver<0.0.3>:auth<zef:lizmat>",
"highlighter:ver<0.0.18>:auth<zef:lizmat>",
"IO::Path::AutoDecompress:ver<0.0.2>:auth<zef:lizmat>",
"JSON::Fast::Hyper:ver<0.0.5>:auth<zef:lizmat>",
"META::constants:ver<0.0.3>:auth<zef:lizmat>",
"as-cli-arguments:ver<0.0.8>:auth<zef:lizmat>",
"Backtrace::Files:ver<0.0.4>:auth<zef:lizmat>",
"CLI::Version:ver<0.0.9>:auth<zef:lizmat>",
"has-word:ver<0.0.4>:auth<zef:lizmat>",
"highlighter:ver<0.0.19>:auth<zef:lizmat>",
"IO::Path::AutoDecompress:ver<0.0.3>:auth<zef:lizmat>",
"JSON::Fast::Hyper:ver<0.0.6>:auth<zef:lizmat>",
"META::constants:ver<0.0.4>:auth<zef:lizmat>",
"rak:ver<0.0.59>:auth<zef:lizmat>",
"String::Utils:ver<0.0.23+>:auth<zef:lizmat>"
"String::Utils:ver<0.0.24+>:auth<zef:lizmat>"
],
"description": "21st century grep / find / ack / ag / rg on steroids",
"license": "Artistic-2.0",
Expand Down
18 changes: 9 additions & 9 deletions lib/App/Rak.rakumod
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
# The modules that we need here, with their full identities
use as-cli-arguments:ver<0.0.7>:auth<zef:lizmat>; # as-cli-arguments
use has-word:ver<0.0.3>:auth<zef:lizmat>; # has-word
use highlighter:ver<0.0.18>:auth<zef:lizmat>; # columns highlighter matches Type
use IO::Path::AutoDecompress:ver<0.0.2>:auth<zef:lizmat>; # IOAD
use JSON::Fast::Hyper:ver<0.0.5>:auth<zef:lizmat>; # from-json to-json
use META::constants:ver<0.0.3>:auth<zef:lizmat> $?DISTRIBUTION;
use as-cli-arguments:ver<0.0.8>:auth<zef:lizmat>; # as-cli-arguments
use has-word:ver<0.0.4>:auth<zef:lizmat>; # has-word
use highlighter:ver<0.0.19>:auth<zef:lizmat>; # columns highlighter matches Type
use IO::Path::AutoDecompress:ver<0.0.3>:auth<zef:lizmat>; # IOAD
use JSON::Fast::Hyper:ver<0.0.6>:auth<zef:lizmat>; # from-json to-json
use META::constants:ver<0.0.4>:auth<zef:lizmat> $?DISTRIBUTION;
use rak:ver<0.0.59>:auth<zef:lizmat>; # rak Rak

use Backtrace::Files:ver<0.0.3>:auth<zef:lizmat> <
use Backtrace::Files:ver<0.0.4>:auth<zef:lizmat> <
backtrace-files
>;
use String::Utils:ver<0.0.23+>:auth<zef:lizmat> <
use String::Utils:ver<0.0.24+>:auth<zef:lizmat> <
after before between is-sha1 non-word has-marks
>;

Expand Down Expand Up @@ -3514,7 +3514,7 @@ my sub action-version(--> Nil) {
activate-output-options;
my proto sub MAIN(|) {*}
use CLI::Version:ver<0.0.8>:auth<zef:lizmat> $?DISTRIBUTION, &MAIN, 'long';
use CLI::Version:ver<0.0.9>:auth<zef:lizmat> $?DISTRIBUTION, &MAIN, 'long';
MAIN(:version, :$verbose);
}
Expand Down

0 comments on commit a95b569

Please sign in to comment.