Skip to content

Commit 7b8e1c3

Browse files
authored
Merge pull request #433 from RoaringBitmap/clean_major_version_update
more fixes having to do with the major version update
2 parents a591c54 + 6b0bdee commit 7b8e1c3

File tree

13 files changed

+12
-15
lines changed

13 files changed

+12
-15
lines changed

BitSliceIndexing/bsi.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"sync"
88
"sync/atomic"
99

10-
"github.com/RoaringBitmap/roaring"
10+
"github.com/RoaringBitmap/roaring/v2"
1111
)
1212

1313
const (

BitSliceIndexing/bsi_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"testing"
99
"time"
1010

11-
"github.com/RoaringBitmap/roaring"
11+
"github.com/RoaringBitmap/roaring/v2"
1212
"github.com/stretchr/testify/assert"
1313
"github.com/stretchr/testify/require"
1414
)

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ package main
188188

189189
import (
190190
"fmt"
191-
"github.com/RoaringBitmap/roaring"
191+
"github.com/RoaringBitmap/roaring/v2"
192192
"bytes"
193193
)
194194

@@ -285,7 +285,7 @@ package main
285285

286286
import (
287287
"fmt"
288-
"github.com/RoaringBitmap/roaring/roaring64"
288+
"github.com/RoaringBitmap/roaring/v2/roaring64"
289289
"bytes"
290290
)
291291

go.mod

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ module github.com/RoaringBitmap/roaring/v2
33
go 1.14
44

55
require (
6-
github.com/RoaringBitmap/roaring v1.9.4
76
github.com/bits-and-blooms/bitset v1.12.0
87
github.com/mschoch/smat v0.2.0
98
github.com/stretchr/testify v1.7.0

go.sum

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
github.com/RoaringBitmap/roaring v1.9.4 h1:yhEIoH4YezLYT04s1nHehNO64EKFTop/wBhxv2QzDdQ=
2-
github.com/RoaringBitmap/roaring v1.9.4/go.mod h1:6AXUsoIEzDTFFQCe1RbGA6uFONMhvejWj5rqITANK90=
31
github.com/bits-and-blooms/bitset v1.12.0 h1:U/q1fAF7xXRhFCrhROzIfffYnu+dlS38vCZtmFVPHmA=
42
github.com/bits-and-blooms/bitset v1.12.0/go.mod h1:7hO7Gc7Pp1vODcmWvKMRA9BNmbv6a/7QIWpPxHddWR8=
53
github.com/davecgh/go-spew v1.1.0 h1:ZDRjVQ15GmhC3fiQ8ni8+OwkZQO4DARzQgrnXU1Liz8=

optimize_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package roaring_test
22

33
import (
4-
"github.com/RoaringBitmap/roaring"
4+
"github.com/RoaringBitmap/roaring/v2"
55
"testing"
66
)
77

roaring64/iterables64.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
package roaring64
22

33
import (
4-
"github.com/RoaringBitmap/roaring"
4+
"github.com/RoaringBitmap/roaring/v2"
55
)
66

77
// IntIterable64 allows you to iterate over the values in a Bitmap

roaring64/iterables64_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"math"
55
"testing"
66

7-
"github.com/RoaringBitmap/roaring"
7+
"github.com/RoaringBitmap/roaring/v2"
88
"github.com/stretchr/testify/assert"
99
)
1010

roaring64/parallel64.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"fmt"
55
"runtime"
66

7-
"github.com/RoaringBitmap/roaring"
7+
"github.com/RoaringBitmap/roaring/v2"
88
)
99

1010
var defaultWorkerCount = runtime.NumCPU()

roaring64/roaring64.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"io"
99
"strconv"
1010

11-
"github.com/RoaringBitmap/roaring"
11+
"github.com/RoaringBitmap/roaring/v2"
1212
"github.com/RoaringBitmap/roaring/v2/internal"
1313
)
1414

0 commit comments

Comments
 (0)