gx publish 0.5.1

This commit is contained in:
Jeromy
2016-10-05 11:37:05 -07:00
parent 0f69fedd3a
commit e5a96152bd
3 changed files with 8 additions and 8 deletions

View File

@@ -1 +1 @@
0.5.0: QmcW7CcRA5kMdqNBRpif7e8y9yvVRmJG1uurMvea8TY2SM
0.5.1: QmUrECr5NauzkUaofvUnCFGjZ4Wevt76n79uv6BhEkuyn3

8
cid.go
View File

@@ -12,10 +12,10 @@ import (
const UnsupportedVersionString = "<unsupported cid version>"
const (
Protobuf = iota
Raw
JSON
CBOR
Protobuf = 0x70
CBOR = 0x71
Raw = 0x72
JSON = 0x73
)
func NewCidV0(h mh.Multihash) *Cid {

View File

@@ -9,9 +9,9 @@
"gxDependencies": [
{
"author": "whyrusleeping",
"hash": "QmYf7ng2hG5XBtJA3tN34DQ2GUN5HNksEw1rLDkmr6vGku",
"hash": "QmYDds3421prZgqKbLpEK7T9Aa2eVdQ7o3YarX1LVLdP2J",
"name": "go-multihash",
"version": "0.0.0"
"version": "1.0.0"
},
{
"author": "whyrusleeping",
@@ -25,6 +25,6 @@
"license": "",
"name": "go-cid",
"releaseCmd": "git commit -a -m \"gx publish $VERSION\"",
"version": "0.5.0"
"version": "0.5.1"
}