TrackingSoft/Kafka

Wrong version format in requirements for Data-HexDump-Range

zprogd-zz opened this issue · 2 comments

Data-HexDump-Range has letter 'v' in its versions: v0.13.72, v0.13.71, v0.13.59, v0.12.57

In META.json and META.yml version without 'v':
"Data::HexDump::Range" : "0.13"

We do not care about specific version of Data::HexDump::Range, so I'll remove explicit version requirement from our Makefile.PL in the next release.

However, the confusion between 0.13 and v0.13.72 may be caused by Data::HexDump::Range, here is an excerpt from its META.json:

   "provides" : {
      "Data::HexDump::Range" : {
         "file" : "lib/Data/HexDump/Range.pm",
         "version" : "0.13"
      }
   },
   .....
   "version" : "v0.13.72"

So the module that we require has version 0.13, but its distribution has a different version.

Fixed in be02b67