After upgrading to v0.15, a new issue occurred in our application. There is a column that accepts a single character in the CSV, and we use the following parser to convert it to `Enum` from a raw string directly. ```kotlin df. ... .convertTo<xxx>{ parser { ACHType.fromSymbol(it) } } ``` which worked well with the former version, but failed now with the following information. ```bash Type converter from kotlin.Char to xxx.ACHType? is not found for column 'ACH Type' ```