Skip to content

Commit

Permalink
update to v3
Browse files Browse the repository at this point in the history
This patch set introduces a breaking change to the format (fixes a bug).
  • Loading branch information
Stebalien committed Sep 28, 2020
1 parent 8bed850 commit 8e17758
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion amt.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
logging "github.com/ipfs/go-log"
cbg "github.com/whyrusleeping/cbor-gen"

"github.com/filecoin-project/go-amt-ipld/v2/internal"
"github.com/filecoin-project/go-amt-ipld/v3/internal"
)

var log = logging.Logger("amt")
Expand Down
2 changes: 1 addition & 1 deletion amt_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
"testing"
"time"

"github.com/filecoin-project/go-amt-ipld/v2/internal"
"github.com/filecoin-project/go-amt-ipld/v3/internal"
block "github.com/ipfs/go-block-format"
cid "github.com/ipfs/go-cid"
cbor "github.com/ipfs/go-ipld-cbor"
Expand Down
2 changes: 1 addition & 1 deletion gen/gen.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package main
import (
cbg "github.com/whyrusleeping/cbor-gen"

"github.com/filecoin-project/go-amt-ipld/v2/internal"
"github.com/filecoin-project/go-amt-ipld/v3/internal"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/filecoin-project/go-amt-ipld/v2
module github.com/filecoin-project/go-amt-ipld/v3

go 1.12

Expand Down
2 changes: 1 addition & 1 deletion link.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package amt
import (
"context"

"github.com/filecoin-project/go-amt-ipld/v2/internal"
"github.com/filecoin-project/go-amt-ipld/v3/internal"
cid "github.com/ipfs/go-cid"
cbor "github.com/ipfs/go-ipld-cbor"
)
Expand Down
2 changes: 1 addition & 1 deletion node.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"errors"
"fmt"

"github.com/filecoin-project/go-amt-ipld/v2/internal"
"github.com/filecoin-project/go-amt-ipld/v3/internal"
"github.com/ipfs/go-cid"
cbor "github.com/ipfs/go-ipld-cbor"
cbg "github.com/whyrusleeping/cbor-gen"
Expand Down
2 changes: 1 addition & 1 deletion util.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package amt

import "github.com/filecoin-project/go-amt-ipld/v2/internal"
import "github.com/filecoin-project/go-amt-ipld/v3/internal"

func nodesForHeight(height int) uint64 {
heightLogTwo := uint64(internal.WidthBits * height)
Expand Down

0 comments on commit 8e17758

Please sign in to comment.