Hello! I've noticed that in 0.6.3, the encoding of boolean types has changed in certain circumstances. I've narrowed down the code causing me issues to this: ```swift var options: AnyCodable { return [ "key": true, ] } ``` In < 0.6.3, this would result in the JSON data `{"key": true}`. In 0.6.3, it produces `{"key": 1}`.
Hello!
I've noticed that in 0.6.3, the encoding of boolean types has changed in certain circumstances. I've narrowed down the code causing me issues to this:
In < 0.6.3, this would result in the JSON data
{"key": true}. In 0.6.3, it produces{"key": 1}.