From 4c8969f671ffe9927d6db10402cd6a0a7cf28807 Mon Sep 17 00:00:00 2001 From: "Wenzel P. P. Peppmeyer" Date: Sat, 19 Feb 2022 21:13:44 +0100 Subject: [PATCH 1/2] expose X::JSON::Tiny::Invalid so one (who goes by the name of A26F64) can fetch it --- lib/JSON/Tiny.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/JSON/Tiny.pm b/lib/JSON/Tiny.pm index 342f365..0689b7a 100644 --- a/lib/JSON/Tiny.pm +++ b/lib/JSON/Tiny.pm @@ -18,7 +18,7 @@ unit module JSON::Tiny; use JSON::Tiny::Actions; use JSON::Tiny::Grammar; -class X::JSON::Tiny::Invalid is Exception { +class X::JSON::Tiny::Invalid is Exception is export { has $.source; method message { "Input ($.source.chars() characters) is not a valid JSON string" } } From b8f6c07ecaedf838256410e8bfb6dee9a9888251 Mon Sep 17 00:00:00 2001 From: "Wenzel P. P. Peppmeyer" Date: Sat, 19 Feb 2022 21:14:31 +0100 Subject: [PATCH 2/2] bump version to please zef --- META6.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/META6.json b/META6.json index c7859f9..089b5c8 100644 --- a/META6.json +++ b/META6.json @@ -1,7 +1,7 @@ { "perl" : "6.*", "name" : "JSON::Tiny", - "version" : "1.0", + "version" : "1.0.1", "description" : "A minimal JSON (de)serializer", "depends" : [ ], "license": "Artistic-2.0",