Skip to content

Commit 778f5e6

Browse files
committed
CI test for 0.0.27 release
1 parent be5c928 commit 778f5e6

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

Changes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Revision history for Ecosystem-Archive-Update
22

33
{{$NEXT}}
4+
- Add dependency on META::verauthapi
5+
- Upped dependencies where possible
6+
- Make sure that ^ver ^auth ^api are set correctly on classes
47

58
0.0.26 2024-08-05T18:49:44+02:00
69
- No longer update modules from the "p6c" system

META6.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@
66
"build-depends": [
77
],
88
"depends": [
9-
"JSON::Fast::Hyper:ver<0.0.6>:auth<zef:lizmat>",
10-
"paths:ver<10.0.9>:auth<zef:lizmat>",
9+
"JSON::Fast::Hyper:ver<0.0.9+>:auth<zef:lizmat>",
10+
"paths:ver<10.1+>:auth<zef:lizmat>",
1111
"Rakudo::CORE::META:ver<0.0.9+>:auth<zef:lizmat>",
12-
"Identity::Utils:ver<0.0.11+>:auth<zef:lizmat>"
12+
"Identity::Utils:ver<0.0.11+>:auth<zef:lizmat>",
13+
"META::verauthapi:ver<0.0.1+>:auth<zef:lizmat"
1314
],
1415
"description": "Updating the Raku Ecosystem Archive",
1516
"license": "Artistic-2.0",
@@ -21,7 +22,7 @@
2122
"resources": [
2223
],
2324
"source-url": "https://github.com/lizmat/Ecosystem-Archive-Update.git",
24-
"tags": [
25+
"tags": [ "REA", "ECOSYSTEM"
2526
],
2627
"test-depends": [
2728
],

lib/Ecosystem/Archive/Update.rakumod

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
use JSON::Fast::Hyper:ver<0.0.6>:auth<zef:lizmat>;
2-
use paths:ver<10.0.9>:auth<zef:lizmat>;
1+
use JSON::Fast::Hyper:ver<0.0.9+>:auth<zef:lizmat>;
2+
use paths:ver<10.1+>:auth<zef:lizmat>;
33
use Rakudo::CORE::META:ver<0.0.9+>:auth<zef:lizmat>;
44
use Identity::Utils:ver<0.0.11+>:auth<zef:lizmat>;
55

6-
76
# Locally stored JSON files are assumed to be correct
87
my sub meta-from-io(IO::Path:D $io) { from-json $io.slurp, :immutable }
98

@@ -600,6 +599,11 @@ class Ecosystem::Archive::Update {
600599
}
601600
}
602601

602+
# Set ^ver ^auth ^api correctly
603+
use META::verauthapi:ver<0.0.1+>:auth<zef:lizmat> $?DISTRIBUTION,
604+
Ecosystem::Archive::Update
605+
;
606+
603607
=begin pod
604608
605609
=head1 NAME

0 commit comments

Comments
 (0)