Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

more fixes having to do with the major version update #433

Merged
merged 1 commit into from
Jun 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading