Compare commits

...

2 Commits

Author SHA1 Message Date
Jeromy
40c5ff1bfe gx publish 0.7.9 2017-02-02 18:53:37 -08:00
Jeromy
ebda3c73ae actually update multihash package 2017-02-02 18:53:32 -08:00
3 changed files with 6 additions and 6 deletions

View File

@@ -1 +1 @@
0.7.8: QmXm6Di2T89xAeprno3x6nD6jRgtMm2wRy25DX4zc4gk8V 0.7.9: QmcqyBnUyn9NYC9nusuHw5rSBaXGqhfLb7wFh61ohGc2pK

4
cid.go
View File

@@ -248,7 +248,7 @@ func (c *Cid) Prefix() Prefix {
type Prefix struct { type Prefix struct {
Version uint64 Version uint64
Codec uint64 Codec uint64
MhType int MhType uint64
MhLength int MhLength int
} }
@@ -302,7 +302,7 @@ func PrefixFromBytes(buf []byte) (Prefix, error) {
return Prefix{ return Prefix{
Version: vers, Version: vers,
Codec: codec, Codec: codec,
MhType: int(mhtype), MhType: mhtype,
MhLength: int(mhlen), MhLength: int(mhlen),
}, nil }, nil
} }

View File

@@ -9,9 +9,9 @@
"gxDependencies": [ "gxDependencies": [
{ {
"author": "whyrusleeping", "author": "whyrusleeping",
"hash": "QmYDds3421prZgqKbLpEK7T9Aa2eVdQ7o3YarX1LVLdP2J", "hash": "QmbZ6Cee2uHjG7hf19qLHppgKDRtaG4CVtMzdmK9VCVqLu",
"name": "go-multihash", "name": "go-multihash",
"version": "1.0.0" "version": "1.0.2"
}, },
{ {
"author": "whyrusleeping", "author": "whyrusleeping",
@@ -25,6 +25,6 @@
"license": "MIT", "license": "MIT",
"name": "go-cid", "name": "go-cid",
"releaseCmd": "git commit -a -m \"gx publish $VERSION\"", "releaseCmd": "git commit -a -m \"gx publish $VERSION\"",
"version": "0.7.8" "version": "0.7.9"
} }