Skip to content
This repository has been archived by the owner on Nov 9, 2023. It is now read-only.

Latest commit

 

History

History
256 lines (157 loc) · 6.84 KB

CHANGELOG.md

File metadata and controls

256 lines (157 loc) · 6.84 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.

[0.17.0] - 2022-10-19

Change

  • Use ranno in lieu of the previous annotations

Removed

  • Remove Link
  • Remove annotations
  • Remove persistence feature

0.10.4 - 2022-02-02

  • Change links to allow microkelvin structures to be safely shareable between threads

0.10.3 - 2022-01-19

Fixed

  • Fix DiskBackend using fs::create_dir_all instead of fs:create_dir

0.10.2 - 2022-01-17

Added

  • Add with_backend to Persistance

0.10.1 - 2022-01-14

Added

  • Add Canon, Clone, Copy and Debug to PersistedId

0.10.0 - 2021-07-26

Removed

  • Remove rkyv dependency archive_le feature

Added

  • Test and fix for objects crossing page boundary
  • Add test directory wasm_tests
  • Add Default for Link,

Changed

  • Change memmap 0.7.0 dependency to memmap2 0.5.3
  • Change CI to use make test instead of cargo test
  • Change name of feature persistance to the correctly spelled persistence
  • Change compound and compound_mut on Link to inner and inner_mut

0.9.1 - 2021-07-02

Changed

  • Change BackendCtor to take a fallible closure
  • Change tests to use ? instead of unwraps.

0.8.1 - 2021-06-21

Added

  • Add ephemeral method to DiskBackend

0.8.0 - 2021-06-18

Added

  • Add feature persistance
  • Add DiskBackend to persist datastructures to disk
  • Add Persistance to interact with the persistance layer
  • Add IntoIterator to MappedBranch and BranchMutMappedMut
  • Add support for non-mutably dereferencing mutable mapped branches

Changed

  • Change the name of BranchMutMappedMut to MappedBranchMut

Removed

  • Remove path from branch traversal, case now covered by walk

0.7.1 - 2021-04-27

Added

  • Add public export of walk::Walker in lib.rs

0.7.0 - 2021-04-21

Added

  • Add Walker trait, to specify the way in which a Branch or BranchMut can be walked from a root node
  • Add Nth trait, to construct a branch to the nth element of a Compound collection
  • Add MaxKey and Keyed traits to keep track of the maximum keyed leaf in the collection
  • Add the levels method to Branch to introspect the individual branch Levels
  • Add the path constructor to Branch and BranchMut to traverse the collectiong along a specified path
  • Added the MappedBranch to provide branches that only allow access to certain parts of its leaves
  • Add implementation of IntoIterator for Branch and BranchMut
  • Add First auto-trait to construct a Branch to the first element in a collection
  • Add LinkedList implementation in tests

Changed

  • Change canonical/canonical_derive version from 0.5 to 0.6
  • Refactor the Annotation trait into Annotation for the leaves, and Combine for the nodes
  • Change the iterator on Compound to only iterate over populated subtrees or leaves

Removed

  • Remove the Annotation trait parameter on Compound, moving it to a generic on the type

0.6.0 - 2021-01-25

Changed

  • Change the library to use alloc::vec instead of const-arrayvec

Removed

  • Remove const-arrayvec as a dependency
  • Remove CanonArrayVec type

0.5.8 - 2021-01-21

Added

  • Add no_std crate-level annotation

0.5.7 - 2021-01-21

Added

  • Add Annotation implementation for ()

0.5.6 - 2021-01-19

Removed

  • Remove unused no_std and feature(min_const_generics)

0.5.5 - 2020-12-03

Changed

  • Max<K> should implement PartialOrd<K>

0.5.4 - 2020-12-03

Changed

  • Annotation impl of Max should require Borrow<Max<K>>

0.5.3 - 2020-11-16

Changed

  • Use PartialOrd with K in Max

0.5.2 - 2020-11-06

Changed

  • Canonical update to support hosted-only calls
  • Unused associative feature removed

0.5.1 - 2020-10-30

Added

  • Cardinality reference implements Into

0.5.0 - 2020-10-28

Changed

  • Associative annotation as a feature

0.4.0 - 2020-10-26

Added

  • Add documentation for all public exports
  • Add pub exports for various types

0.3.0 - 2020-10-26

Added

  • Add CI infrastructure
  • Add branch introspection via levels method

Changed

  • Changed Branch::len to Branch::depth
  • Changed the library to be no_std compatible

Removed

  • Remove Associative helper trait

0.2.0 - 2020-10-21

Changed

  • Change the Annotation::op method to take self by value

Added

  • Add LICENSE and copyright notices
  • Add Nth trait for trees
  • Add capacity to search through trees by walking
  • Add Branch and BranchMut

0.1.0 - 2020-10-16

Initial