Skip to content

Latest commit

 

History

History
150 lines (122 loc) · 5.42 KB

CHANGELOG.md

File metadata and controls

150 lines (122 loc) · 5.42 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

v0.8.0 - 2024-02-28

Changed

  • Bump pest dependency to v2.7.
  • Change rules for unreserved tags.
  • Split Boolean rule into two sub-rules for true and false literals.
  • Rename rules from ISO-8601 specification.

v0.7.4 - 2022-12-05

Added

  • Re-export the pest crate in the crate namespace.

Changed

  • Bumped pest dependency to v2.5.1.

v0.7.3 - 2022-03-04

Added

  • OboLexer::tokenize_all method to make sure the entire input is parsed.

v0.7.2 - 2022-02-11

Fixed

  • Parsing of UrlId with scheme other than http.

Changed

  • Allow escaping reserved OBO characters with backslashes in IRIs.

v0.7.1 - 2022-01-20

Changed

  • Move Iso8601Timezone into the Iso8601Time production rule.

v0.7.0 - 2022-01-20

Changed

  • creation_date clauses can now take an Iso8601Date without the time specifier.

Fixed

  • Iso8601TimeZoneSign now accepts the mathematical minus sign ().

v0.6.2 - 2020-09-28

Fixed

  • Parser crashing on URLs missing a trailing slash after the host component (e.g. http://example.com).

v0.6.1 - 2020-08-28

Fixed

  • Parser crashing on PropertyValue followed by a qualifier list.

v0.6.0 - 2020-08-28

Added

  • Definition production rule to match value of def clauses.

Changed

  • Renamed OboLexer::parse to OboLexer::tokenize.
  • PropertyValue production rule now has two subrules ResourcePropertyValue and LiteralPropertyValue to aid constructing enum variants.
  • LiteralPropertyValue accepts any identifier as a datatype, not just xsd-prefixed datatypes.

v0.5.0 - 2020-07-23

Changed

  • Renamed OboParser struct to OboLexer.

v0.4.0 - 2020-07-20

Added

  • Support for ignoring full comment lines in entity and frames (#1).

v0.3.8 - 2020-01-23

Fixed

  • Made grammar.pest support indented frames and clauses (event unconsistently).

v0.3.7 - 2020-01-18

Fixed

  • Slightly improve parsing of quoted strings in grammar.pest.
  • Fixed Windows newlines not being recognized.

v0.3.6 - 2019-10-05

Fixed

  • SynonymScope rule change breaking synonymtypedef header clauses.

v0.3.5 - 2019-10-05 - YANKED

Fixed

  • Synonym production rule breaking on valid synonyms with v0.3.4.

v0.3.4 - 2019-10-05 - YANKED

Added

  • Added BOSC 2019 poster reference to README.md.

Fixed

  • Synonym production rule parsing synonym types without whitespace after scope.

v0.3.3 - 2019-07-23

Changed

  • Iso8601DateTime rule to allow parsing Iso8601Fraction with f32::from_str.

v0.3.2 - 2019-07-23

Fixed

  • Iso8601DateTime rule support for dates with fractional seconds components.

v0.3.1 - 2019-06-04

Fixed

  • XrefId rule allowing whitespaces, causing a bug with some Xref lists.

v0.3.0 - 2019-05-14

Added

  • Support for is_asymmetric typedef clause in grammar.

v0.2.1 - 2019-05-09

Changed

  • Outsourced crate to fastobo/fastobo-syntax GitHub repository.

v0.2.0 - 2019-05-06

Added

  • Explicit support for namespace-id-rule header clause.

Changed

  • Use builtin pest whitespace interpolation in grammar.pest.

Fixed

  • Allow newlines between clause lines and between frames.
  • Fixed invalid whitespace in TreatXrefsAsRelationshipTag causing parser to fail on some treat-xrefs-as-relationship header clauses.

v0.1.1 - 2019-04-12

Fixed

  • Fix invalid header values being successfully parsed into Unreserved nonetheless.

v0.1.0 - 2019-03-30

Initial release.