Skip to content

Commit 3e0a3e8

Browse files
committedJul 25, 2023
Up JSON::Class version
Fixes #29
1 parent 0ca5e44 commit 3e0a3e8

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed
 

‎Changes

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
v0.0.30 Tue 25 Jul 18:24:09 BST 2023
2+
* Up version of JSON::Class
3+
* Change some test data
14
v0.0.29 Tue 9 Aug 10:09:56 BST 2022
25
* Support 'build' and 'builder' keys
36
v0.0.28 Mon 8 Aug 08:02:28 BST 2022

‎META6.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"auth": "zef:jonathanstowe",
1919
"license": "Artistic-2.0",
2020
"name": "META6",
21-
"version": "0.0.29",
21+
"version": "0.0.30",
2222
"provides": {
2323
"META6": "lib/META6.rakumod"
2424
},
@@ -31,7 +31,7 @@
3131
"Test"
3232
],
3333
"depends": [
34-
"JSON::Class:ver<0.0.15+>",
34+
"JSON::Class:ver<0.0.20+>",
3535
"JSON::Name"
3636
],
3737
"meta-version": "1"

‎lib/META6.rakumod

+2-2
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ Support method to allow subscripts on META6 objects.
114114
=end pod
115115

116116
use JSON::Name;
117-
use JSON::Class:ver(v0.0.15+);
117+
use JSON::Class:ver(v0.0.20+);
118118

119119
role AutoAssoc {
120120
method AT-KEY($key) {
@@ -241,7 +241,7 @@ class META6 does JSON::Class does AutoAssoc {
241241
has Str @.authors is rw is specification(Optional);
242242
has Str $.author is rw is customary is json-skip-null;
243243
has Str %.provides is rw is specification(Mandatory);
244-
has $.depends is rw is specification(Optional) where Positional|Associative;
244+
has $.depends is rw is specification(Optional) is json-skip-null where Positional|Associative;
245245
has Str %.emulates is rw is specification(Optional) is json-skip-null;
246246
has Str %.supersedes is rw is specification(Optional) is json-skip-null;
247247
has Str %.superseded-by is rw is specification(Optional) is json-skip-null;

‎t/data/projects.json

-1
Original file line numberDiff line numberDiff line change
@@ -2758,7 +2758,6 @@
27582758
"Farabi6" : "lib/Farabi6.pm6",
27592759
"Farabi6::Util" : "lib/Farabi6/Util.pm6"
27602760
},
2761-
"resources" : {},
27622761
"name" : "Farabi6",
27632762
"depends" : [
27642763
"File::Temp",

0 commit comments

Comments
 (0)