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