Releases: dtolnay/serde-yaml
Releases · dtolnay/serde-yaml
0.8.10
- Implement PartialEq for Value == u64, Value == bool (#138, #139, thanks @CAD97)
0.8.9
- Add
Value::get_mut
to index into a &mut Value, returning Option
0.8.8
- Provide an implementation of
Default
for serde_yaml::Value
which produces Value::Null
(#120, thanks @macisamuele)
0.8.7
- Allow YAML tags to be used to specify an enum variant (#115, thanks @EliSnow)
0.8.6
- 128-bit integer support (#110)
0.8.5
- Support integers represented in binary, e.g. 0b0101 (#106, thanks @p4l1ly)
0.8.4
- Limit recursion to 128 levels to avoid stack overflows (#105)
0.8.3
- Fix possible panic during deserialization (#101)
0.8.2
- Documentation improvements