1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-23 21:47:52 +08:00

Ipfs 0.4.16 release

License: MIT
Signed-off-by: Whyrusleeping <why@ipfs.com>
This commit is contained in:
Jeromy
2018-07-02 18:21:32 -07:00
committed by Steven Allen
parent 265295c789
commit 7bcc9caa84
4 changed files with 4 additions and 3 deletions

View File

@ -1 +1 @@
0.4.16-rc3: QmamgrmUW2VvJA8FsGGvgYMfSdZzQMzk1fAJewMJEEQrf9
0.4.16: QmTRP6dcuYwcGDvAH8HvJtoupPrhZDQ8AoxMEn9gMzbgMy

View File

@ -142,6 +142,7 @@ below.
- Fix panic, Don't handle errors with fallthrough ([ipfs/go-ipfs#5072](https://github.com/ipfs/go-ipfs/pull/5072))
- Fix how filestore is hooked up with caching ([ipfs/go-ipfs#5122](https://github.com/ipfs/go-ipfs/pull/5122))
- Add record validation to offline routing ([ipfs/go-ipfs#5116](https://github.com/ipfs/go-ipfs/pull/5116))
- Fix `ipfs update` working with migrations ([ipfs/go-ipfs#5194](https://github.com/ipfs/go-ipfs/pull/5194))
- General Changes and Refactorings
- Remove leftover bits of dead code ([ipfs/go-ipfs#5022](https://github.com/ipfs/go-ipfs/pull/5022))
- Remove fuse platform build constraints ([ipfs/go-ipfs#5033](https://github.com/ipfs/go-ipfs/pull/5033))

View File

@ -551,6 +551,6 @@
"language": "go",
"license": "MIT",
"name": "go-ipfs",
"version": "0.4.16-rc3"
"version": "0.4.16"
}

View File

@ -4,6 +4,6 @@ package config
var CurrentCommit string
// CurrentVersionNumber is the current application's version literal
const CurrentVersionNumber = "0.4.16-rc3"
const CurrentVersionNumber = "0.4.16"
const ApiVersion = "/go-ipfs/" + CurrentVersionNumber + "/"