Skip to content

Releases: arindas/generational-cache

0.2.2

08 Feb 06:21
62f0ece
Compare
Choose a tag to compare

What's Changed

  • chore: updates documentation for map, lru_cache and vector modules by @arindas in #8

Full Changelog: 0.2.1...0.2.2

0.2.1

07 Feb 18:21
6d9f568
Compare
Choose a tag to compare

What's Changed

  • docs: adds documentation for arena, list and lru_cache modules by @arindas in #7

Full Changelog: 0.2.0...0.2.1

0.2.0

10 Sep 14:43
9b80455
Compare
Choose a tag to compare

What's Changed

  • feat(cache)!: refactors query and remove API by @arindas in #6

Full Changelog: 0.1.2...0.2.0

0.1.2

10 Sep 12:37
1ca1304
Compare
Choose a tag to compare

What's Changed

  • feat: adds reserve APIs for vector, arena, list, cache by @arindas in #5

Full Changelog: 0.1.1...0.1.2

0.1.1

22 Aug 05:34
4be7968
Compare
Choose a tag to compare

Release 0.1.1

  • Adds tests to validate vector capacity invariants
  • Improves documentation on Arena

0.1.0

21 Aug 14:52
6265503
Compare
Choose a tag to compare

Release 0.1.0

  • Provides generic traits for Vector and Map with fallible operations
  • Implements a generational arena using these traits
  • Implements a linked list using the generational arena
  • Implements an LRU cache using the linked list