Skip to content

Releases: lmondada/relrc

v0.2.2

08 Aug 14:07
Compare
Choose a tag to compare

[0.2.2] - 2024-08-08

Added

  • Implement Default for GraphView
  • Implement Serialize and Deserialize for GraphView.

Changed

  • GraphView::lowest_common_ancestors takes a slice of Borrow<Self> as argument.

v0.2.1

05 Aug 13:44
Compare
Choose a tag to compare

[0.2.1] - 2024-08-05

Fixed

  • Restored all_indices util function for petgraph feature.

v0.2.0

05 Aug 13:35
Compare
Choose a tag to compare

[0.2.0] - 2024-08-05

Added

  • GraphView::from_sources to create a GraphView for all descendants.
  • GraphView::merge to merge two GraphViews.
  • GraphView::lowest_common_ancestors to find the lowest common ancestors of GraphViews.
  • GraphView serialization (activate serde feature).

Changed

  • AncestorGraph is now called GraphView
  • Use "sources" and "sinks" instead of "initials" and "terminals" in GraphView

v0.1.1

31 Jul 07:11
Compare
Choose a tag to compare

Changelog

  • add petgraph feature and support
  • add AncestorGraph