All Versions
15
Latest Version
Avg Release Cycle
84 days
Latest Release
1471 days ago

Changelog History
Page 2

  • v0.11.8 Changes

    July 03, 2017
    • ๐Ÿ›  Fixed an issue that lead to a panic when trying to print Number types with negative exponent but with large base, where putting the period after first digit would force the scientific e notation to flip sign to positive (issue #108, thank you @lpbak)
  • v0.11.7 Changes

    June 26, 2017
    • ๐Ÿ›  Fixed an issue with overflow math when turning min value i16 to absolute value u16 (issue #107, thank you @lpbak)
  • v0.11.6 Changes

    March 15, 2017
    • ๐Ÿ›  Fixes reading out of bounds issue #106.
  • v0.11.5 Changes

    January 21, 2017
    • Object struct now implements Index and IndexMut on it's own. Thanks to @hobofan for #105.
    • ๐Ÿ›  Fixed a rare SIGSEGV that could occur during serialization or iteration over objects due to invalid lifetimes being applied on unsafe code. Reduced the amount of unsafe code around to increase maintainability of the project, more to come.
  • v0.11.4 Changes

    January 02, 2017
    • ๐Ÿ‘€ To allow for custom implementators of From<T> for JsonValue to benefit from automatic conversions, the trait implementations are now using generics instead of macros internally (see #101).