Skip to content

Commit f11f1b4

Browse files
committed
Fix issue and publish new version
1 parent 64339dd commit f11f1b4

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

datastore.go

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -151,10 +151,7 @@ func (d *Datastore) Query(ctx context.Context, q query.Query) (query.Results, er
151151
}(),
152152
}
153153

154-
iter, err := d.db.NewIter(opts)
155-
if err != nil {
156-
return nil, err
157-
}
154+
iter := d.db.NewIter(opts)
158155

159156
var move func() bool
160157
switch l := len(orders); l {

go.mod

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ module github.com/ipfs/go-ds-pebble
22

33
// Uses incompatible format of pebble (pre-v2)
44
retract v0.2.6
5+
// Error
6+
retract v0.2.7
57

68
go 1.21
79

version.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
"version": "v0.2.7"
2+
"version": "v0.2.8"
33
}

0 commit comments

Comments
 (0)