Skip to content

Releases: dahelb/rs-conllu

v0.3.0

28 Dec 14:59
d2be533
Compare
Choose a tag to compare

Breaking Changes

  • There were some renamings to align more with the conllu specification:
    • Token struct: The field dep was renamed to deps
    • TokenID enum: The Subordinate variant was renamed to Empty
  • As a result of refactoring, Token, TokenID, and Dep have been moved to a separate module (crate::token). They are re-exported on the crate root level.

What's Changed

  • Refactoring, adding TokenBuilder plus functionality and documentation by @davidhelbig in #5
  • Display for UPOS. Serde for main structs in feature by @veta666 in #6

Full Changelog: 0.2.0...v0.3.0

0.2.0

29 Jul 19:01
Compare
Choose a tag to compare
  • Add Copy and Clone for base enum and structs (#2, thanks @veta666 )