in reply to Re: Release: JSON::SIMD
in thread Release: JSON::SIMD

The metadata for Metacpan is set via the META.json file. See for example my META.json for HTTP::Request::FromCurl.

Replies are listed 'Best First'.
Re^3: Release: JSON::SIMD
by pryrt (Abbot) on Apr 18, 2023 at 20:51 UTC
    The metadata for Metacpan is set via the META.json file.

    What got me curious is why the Makefile.PL didn't properly set the META.json , because the repo's 'Makefile.PL' sets the METAMERGE => { resources => { bugtracker => {...} } } , but the repo's 'META.json' shows resources: {} as empty.

    I've never had ExtUtils::MakeMaker do that to me, and 5 minutes of looking into it has seen me able to replicate the problem, but I don't see why it's not propagating from the Makefile.PL to META.json . Weird.

      Apparently you have to add 'meta-spec' => { version => 2 }, to the Makefile.PL. (Thanks to Gabor Szabo for the tip)