Releases: mkaput/elixir-bimap
Releases · mkaput/elixir-bimap
v1.3.0
Breaking changes
The format of inspect strings have changed to follow the trend applied in Elixir 1.14. Code that is relying on inspect strings in your code (for example in doctests) has to updated accordingly:
-#BiMap<[a: 1, b: 2]>
+BiMap.new([a: 1, b: 2])
This change affects only a specific use case while potentially benefiting the general audience, hence only minor version bump.
What's Changed
Full Changelog: v1.2.2...v1.3.0
v1.2.2
v1.2.1
v1.2.0
v1.1.1
v1.1.0
v1.0.1
What's Changed
- add property tests for bimap and bimultimap by @ckampfe in #1
- Add naive implementation of slice/1 to satisfy Enumerable protocol by @NullOranje in #3
- Fix BiMap.put/3 mapping update issue by @NullOranje in #5
New Contributors
- @ckampfe made their first contribution in #1
- @NullOranje made their first contribution in #3
Full Changelog: v1.0.0...v1.0.1
v1.0.0
This library is pretty stable and 1.0 ready. Nothing has changed since 0.1.1.
Full Changelog: v0.1.1...v1.0.0
v0.1.1
v0.1.0
First version 🎉
Full Changelog: https://github.com/mkaput/elixir-bimap/commits/v0.1.0