Releases: RoaringBitmap/roaring
Releases · RoaringBitmap/roaring
Version 1.7.0
What's Changed
- Minor fixes, changes to
FrozenBitmap
API (renaming) by @lemire in #406 - roaring: implement ToDense and FromDense by @tsenart in #408
- We added FromBitSet and ToBitSet methods so you can go back and forth with https://github.com/bits-and-blooms/bitset instances
mybitset := roaringbitmap.ToBitSet()
newroaringbitmap := roaring.FromBitSet(mybitset)
New Contributors
Full Changelog: v1.6.0...v1.7.0
Version 1.6.0
Version 1.5.0
What's Changed
- Remove unnecessary allocations in 64 bit BSI by @anacrolix in #394
- Verifying and fixing issue 396 :
UnmarshalBinary
orFromBase64
should not have their containers marked as needing copy-on-write by @lemire in #397
Full Changelog: v1.4.0...v1.5.0
Version 1.4.0
What's Changed
- Add BSI.GetSizeInBytes by @anacrolix in #393
- Tidy up BSI.GetValue by @anacrolix in #392
- BSI fixes by @anacrolix in #383
- Add FromUnsafeBytes to prevent small allocations caused by ByteInputAdapter by @damnever in #395
New Contributors
- @cuishuang made their first contribution in #389
- @testwill made their first contribution in #391
- @damnever made their first contribution in #395
Full Changelog: v1.3.0...v1.4.0
Version 1.3.0
What's Changed
- Modify BSI existence bitmap on Increment by @anacrolix in #382
- Add BSI WriteTo, ReadFrom and Equal by @anacrolix in #384
- Verifying issue 386 by @lemire in #387 credit to @zenxme and @guymolinari
Full Changelog: v1.2.3...v1.2.4
Version 1.2.3
What's Changed
Full Changelog: v1.2.2...v1.2.3
Version 1.2.2
What's Changed
- Update roaring64.go by @hyhanyan in #368
- Bump github.com/stretchr/testify to v1.7.0 by @b4bay in #377
- Fixes #335 by allowing tests even if disk access is disabled.
New Contributors
- @hyhanyan made their first contribution in #368
- @missinglink made their first contribution in #375
- @b4bay made their first contribution in #377
Full Changelog: v1.2.1...v1.2.2
Version 1.2.1
Patch release fixing #358
credit:
@jacksonrnewhouse @richardartoul
Version 1.2.0
We introduce arena allocation for frozen views which may improve performance in some cases.
Version 1.1.0
Adding value-based iterators to avoid heap allocations #354