Subject: | META.yml should be encoded in UTF-8 |
My author name contains non-ASCII characters.
Module::Build::YAML::DumpFile() writes META.yml using the default
platform encoding, which is 'windows-1252' on my platform. It should
instead force UTF-8 encoding.
Module::Build::YAML::LoadFile() should also use UTF-8 for loading.
Just add the following call after open():
binmode($OUT, ":utf8");