Skip to content

Releases: gtker/wow_dbc

v0.2.0

25 Oct 13:18
Compare
Choose a tag to compare

[0.2.0] - 2022-10-25

Added

  • Hash, PartialOrd, Ord, Default traits for types that support it.
  • From<{native_ty} and all integer types with a From<{native_ty}> for primary keys.

Changed

  • BREAKING: Changed Indexable::get and Indexable::get_mut parameters from &Self::PrimaryKey to impl Into<Self::PrimaryKey>.
    This is in order to reduce the boilerplate needed for calling the functions with values that aren't from another wow_dbc table.
    This makes it possible to do table.get(value) instead of table.get(TableKey::new(value))
  • BREAKING: Removed all default features. This prevents people from mistakenly not disabling the expansions that they do not need and bloating compile times as well as IDE suggestions.

v0.1.0

29 Sep 16:50
Compare
Choose a tag to compare

[0.1.0] - 2022-09-29

Added

  • Initial release.