Skip to content

Commit

Permalink
Merge pull request #433 from RoaringBitmap/clean_major_version_update
Browse files Browse the repository at this point in the history
more fixes having to do with the major version update
  • Loading branch information
lemire committed Jun 13, 2024
2 parents a591c54 + 6b0bdee commit 7b8e1c3
Show file tree
Hide file tree
Showing 13 changed files with 12 additions and 15 deletions.
2 changes: 1 addition & 1 deletion BitSliceIndexing/bsi.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"sync"
"sync/atomic"

"github.com/RoaringBitmap/roaring"
"github.com/RoaringBitmap/roaring/v2"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion BitSliceIndexing/bsi_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"testing"
"time"

"github.com/RoaringBitmap/roaring"
"github.com/RoaringBitmap/roaring/v2"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ package main

import (
"fmt"
"github.com/RoaringBitmap/roaring"
"github.com/RoaringBitmap/roaring/v2"
"bytes"
)

Expand Down Expand Up @@ -285,7 +285,7 @@ package main

import (
"fmt"
"github.com/RoaringBitmap/roaring/roaring64"
"github.com/RoaringBitmap/roaring/v2/roaring64"
"bytes"
)

Expand Down
1 change: 0 additions & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ module github.com/RoaringBitmap/roaring/v2
go 1.14

require (
github.com/RoaringBitmap/roaring v1.9.4
github.com/bits-and-blooms/bitset v1.12.0
github.com/mschoch/smat v0.2.0
github.com/stretchr/testify v1.7.0
Expand Down
2 changes: 0 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
github.com/RoaringBitmap/roaring v1.9.4 h1:yhEIoH4YezLYT04s1nHehNO64EKFTop/wBhxv2QzDdQ=
github.com/RoaringBitmap/roaring v1.9.4/go.mod h1:6AXUsoIEzDTFFQCe1RbGA6uFONMhvejWj5rqITANK90=
github.com/bits-and-blooms/bitset v1.12.0 h1:U/q1fAF7xXRhFCrhROzIfffYnu+dlS38vCZtmFVPHmA=
github.com/bits-and-blooms/bitset v1.12.0/go.mod h1:7hO7Gc7Pp1vODcmWvKMRA9BNmbv6a/7QIWpPxHddWR8=
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=
Expand Down
2 changes: 1 addition & 1 deletion optimize_test.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package roaring_test

import (
"github.com/RoaringBitmap/roaring"
"github.com/RoaringBitmap/roaring/v2"
"testing"
)

Expand Down
2 changes: 1 addition & 1 deletion roaring64/iterables64.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package roaring64

import (
"github.com/RoaringBitmap/roaring"
"github.com/RoaringBitmap/roaring/v2"
)

// IntIterable64 allows you to iterate over the values in a Bitmap
Expand Down
2 changes: 1 addition & 1 deletion roaring64/iterables64_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"math"
"testing"

"github.com/RoaringBitmap/roaring"
"github.com/RoaringBitmap/roaring/v2"
"github.com/stretchr/testify/assert"
)

Expand Down
2 changes: 1 addition & 1 deletion roaring64/parallel64.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"runtime"

"github.com/RoaringBitmap/roaring"
"github.com/RoaringBitmap/roaring/v2"
)

var defaultWorkerCount = runtime.NumCPU()
Expand Down
2 changes: 1 addition & 1 deletion roaring64/roaring64.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"io"
"strconv"

"github.com/RoaringBitmap/roaring"
"github.com/RoaringBitmap/roaring/v2"
"github.com/RoaringBitmap/roaring/v2/internal"
)

Expand Down
2 changes: 1 addition & 1 deletion roaring64/roaring64_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"strconv"
"testing"

"github.com/RoaringBitmap/roaring"
"github.com/RoaringBitmap/roaring/v2"
"github.com/bits-and-blooms/bitset"
"github.com/stretchr/testify/assert"
)
Expand Down
2 changes: 1 addition & 1 deletion roaring64/roaringarray64.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package roaring64

import (
"github.com/RoaringBitmap/roaring"
"github.com/RoaringBitmap/roaring/v2"
)

type roaringArray64 struct {
Expand Down
2 changes: 1 addition & 1 deletion roaring64/util.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package roaring64

import "github.com/RoaringBitmap/roaring"
import "github.com/RoaringBitmap/roaring/v2"

func highbits(x uint64) uint32 {
return uint32(x >> 32)
Expand Down

0 comments on commit 7b8e1c3

Please sign in to comment.