gx publish 1.3.0

This commit is contained in:
Jeromy 2016-10-04 18:38:14 -07:00
parent cf69e7912b
commit 639e4e1e92
18 changed files with 41 additions and 39 deletions

View File

@ -1 +1 @@
1.2.5: QmYkwVGkwoPbMVQEbf6LonZg4SsCxGP3H7PBEtdNCNRyxD
1.3.0: QmXXCcQ7CLg5a81Ui9TTR35QcR4y7ZyihxwfjqaHfUVcVo

View File

@ -2,7 +2,7 @@
package addr
import (
ma "github.com/jbenet/go-multiaddr"
ma "github.com/multiformats/go-multiaddr"
)
// AddrSource is a source of addresses. It allows clients to retrieve

View File

@ -4,7 +4,7 @@ import (
"fmt"
"testing"
ma "github.com/jbenet/go-multiaddr"
ma "github.com/multiformats/go-multiaddr"
)
func newAddrOrFatal(t *testing.T, s string) ma.Multiaddr {

View File

@ -3,8 +3,8 @@ package addr
import (
"bytes"
ma "github.com/jbenet/go-multiaddr"
manet "github.com/jbenet/go-multiaddr-net"
ma "github.com/multiformats/go-multiaddr"
manet "github.com/multiformats/go-multiaddr-net"
mafmt "github.com/whyrusleeping/mafmt"
)

View File

@ -6,9 +6,9 @@ import (
"sync"
"time"
peer "github.com/ipfs/go-libp2p-peer"
ma "github.com/jbenet/go-multiaddr"
peer "github.com/libp2p/go-libp2p-peer"
addr "github.com/libp2p/go-libp2p-peerstore/addr"
ma "github.com/multiformats/go-multiaddr"
)
const (

View File

@ -4,8 +4,8 @@ import (
"testing"
"time"
"github.com/ipfs/go-libp2p-peer"
ma "github.com/jbenet/go-multiaddr"
"github.com/libp2p/go-libp2p-peer"
ma "github.com/multiformats/go-multiaddr"
)
func IDS(t *testing.T, ids string) peer.ID {

View File

@ -4,7 +4,7 @@ import (
"sync"
"time"
"github.com/ipfs/go-libp2p-peer"
"github.com/libp2p/go-libp2p-peer"
)
// LatencyEWMASmooting governs the decay of the EWMA (the speed

View File

@ -7,7 +7,7 @@ import (
"testing"
"time"
testutil "github.com/ipfs/go-libp2p-peer/test"
testutil "github.com/libp2p/go-libp2p-peer/test"
)
func TestLatencyEWMAFun(t *testing.T) {

View File

@ -9,9 +9,9 @@
"gxDependencies": [
{
"author": "whyrusleeping",
"hash": "QmZNVWh8LLjAavuQ2JXuFmuYH3C11xo988vSgp7UQrTRj1",
"hash": "Qmb912gdngC1UWwTkhuW8knyRbcWeu5kqkxBpveLmW8bSr",
"name": "go-ipfs-util",
"version": "1.0.0"
"version": "1.2.0"
},
{
"author": "whyrusleeping",
@ -21,9 +21,9 @@
},
{
"author": "whyrusleeping",
"hash": "QmYzDkkgAEmrcNzFCiYo6L1dTX4EAG1gZkbtdbd9trL4vd",
"hash": "QmUAQaWbKxGCUTuoQVvvicbQNZ9APF5pDGWyAZSe93AtKH",
"name": "go-multiaddr",
"version": "0.0.0"
"version": "1.1.2"
},
{
"author": "whyrusleeping",
@ -33,33 +33,34 @@
},
{
"author": "whyrusleeping",
"hash": "QmVoi5es8D5fNHZDqoW6DgDAEPEV5hQp8GBz161vZXiwpQ",
"hash": "QmfWDLQjGjVe4fr5CoztYW2DYYjRysMJrFe1RCsXLPTf46",
"name": "go-libp2p-crypto",
"version": "1.0.4"
"version": "1.3.1"
},
{
"author": "jbenet",
"hash": "QmY83KqqnQ286ZWbV2x7ixpeemH3cBpk8R54egS619WYff",
"hash": "QmT6Cp31887FpAc25z25YHgpFJohZedrYLWPPspRtj1Brp",
"name": "go-multiaddr-net",
"version": "1.3.0"
"version": "1.5.1"
},
{
"author": "whyrusleeping",
"hash": "QmeLQ13LftT9XhNn22piZc3GP56fGqhijuL5Y8KdUaRn1g",
"hash": "QmQkdkvXE4oKXAcLZK5d7Zc6xvyukQc8WVjX7QvxDJ7hJj",
"name": "mafmt",
"version": "1.1.1"
"version": "1.1.2"
},
{
"author": "whyrusleeping",
"hash": "QmWXjJo15p4pzT7cayEwZi2sWgJqLnGDof6ZGMh9xBgU1p",
"hash": "QmfMmLGoKzCHDN7cGgk64PJr4iipzidDRME8HABSJqvmhC",
"name": "go-libp2p-peer",
"version": "2.0.4"
"version": "2.1.0"
}
],
"gxVersion": "0.4.0",
"language": "go",
"license": "MIT",
"name": "go-libp2p-peerstore",
"version": "1.2.5"
"releaseCmd": "git commit -a -m \"gx publish $VERSION\"",
"version": "1.3.0"
}

View File

@ -3,8 +3,8 @@ package peerstore
import (
"encoding/json"
"github.com/ipfs/go-libp2p-peer"
ma "github.com/jbenet/go-multiaddr"
"github.com/libp2p/go-libp2p-peer"
ma "github.com/multiformats/go-multiaddr"
)
// PeerInfo is a small struct used to pass around a peer with

View File

@ -1,9 +1,10 @@
package peerstore
import (
peer "github.com/ipfs/go-libp2p-peer"
ma "github.com/jbenet/go-multiaddr"
"testing"
peer "github.com/libp2p/go-libp2p-peer"
ma "github.com/multiformats/go-multiaddr"
)
func mustAddr(t *testing.T, s string) ma.Multiaddr {

View File

@ -7,13 +7,13 @@ import (
"sync"
"time"
ic "github.com/ipfs/go-libp2p-crypto"
ic "github.com/libp2p/go-libp2p-crypto"
//ds "github.com/jbenet/go-datastore"
//dssync "github.com/jbenet/go-datastore/sync"
"github.com/ipfs/go-libp2p-peer"
logging "github.com/ipfs/go-log"
ma "github.com/jbenet/go-multiaddr"
"github.com/libp2p/go-libp2p-peer"
ma "github.com/multiformats/go-multiaddr"
)
var log = logging.Logger("peerstore")

View File

@ -8,8 +8,8 @@ import (
"testing"
"time"
peer "github.com/ipfs/go-libp2p-peer"
ma "github.com/jbenet/go-multiaddr"
peer "github.com/libp2p/go-libp2p-peer"
ma "github.com/multiformats/go-multiaddr"
)
func getAddrs(t *testing.T, n int) []ma.Multiaddr {

View File

@ -5,7 +5,7 @@ import (
"math/big"
"sync"
peer "github.com/ipfs/go-libp2p-peer"
peer "github.com/libp2p/go-libp2p-peer"
ks "github.com/whyrusleeping/go-keyspace"
)

View File

@ -1,6 +1,6 @@
package queue
import peer "github.com/ipfs/go-libp2p-peer"
import peer "github.com/libp2p/go-libp2p-peer"
// PeerQueue maintains a set of peers ordered according to a metric.
// Implementations of PeerQueue could order peers based on distances along

View File

@ -8,7 +8,7 @@ import (
"time"
u "github.com/ipfs/go-ipfs-util"
peer "github.com/ipfs/go-libp2p-peer"
peer "github.com/libp2p/go-libp2p-peer"
)
func TestQueue(t *testing.T) {

View File

@ -3,8 +3,8 @@ package queue
import (
"context"
peer "github.com/ipfs/go-libp2p-peer"
logging "github.com/ipfs/go-log"
peer "github.com/libp2p/go-libp2p-peer"
)
var log = logging.Logger("peerqueue")

View File

@ -4,8 +4,8 @@ import (
"io"
u "github.com/ipfs/go-ipfs-util"
ci "github.com/ipfs/go-libp2p-crypto"
peer "github.com/ipfs/go-libp2p-peer"
ci "github.com/libp2p/go-libp2p-crypto"
peer "github.com/libp2p/go-libp2p-peer"
)
func RandPeerID() (peer.ID, error) {