Releases: arr-ai/frozen
Releases · arr-ai/frozen
v1.7.0 Fix Go 1.23 breakage
- Upgrade
hash
package dependency, which was fixed after it broke in Go 1.23.
Reduce dependencies
reduce dependencies (#73) * reduce dependencies * lint * fix go versioning * misc fixes
MapToGoMap
- Add MapToGoMap function.
- Update linters and fix code accordingly.
v1.4.0
Move iterator.Iterator
to frozen.Iterator
.
v1.3.0
Re-export:
Iterator
asiterator.Iterator
("github.com/arr-ai/frozen/pkg/iterator"
)Key
asfrozen.Key
Hashable IntSet
What's Changed
IntSet
is now hashable so it can be used inSet[IntSet]
andMap[IntSet, ...]
.
v1.1.0
What's Changed
- Fix race in (*branch).{Remove,Without} by @marcelocantos in #63
V1
With the introduction of generics support, the API is now considered stable. Future releases will ensure backwards compatibility.
Generics
Set
=>Set[T]
IntSet
=>IntSet[I]
Map
=>Map[K, V]
StringMap
=>Map[string, V]
…Builder
=>…Builder[…]
Switch from unsafe pointers to interfaces
v0.20.0 Switch from unsafe pointers to interfaces (#61)