Skip to content

v1.3.0

Latest
Compare
Choose a tag to compare
@mkaput mkaput released this 10 Oct 06:22
· 11 commits to master since this release
d813cd5

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

  • Make inspects valid Elixir expressions by @mat-hek in #41

Full Changelog: v1.2.2...v1.3.0