1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-25 15:08:45 +08:00

Ipfs v0.4.16-rc3

License: MIT
Signed-off-by: Jeromy <jeromyj@gmail.com>
This commit is contained in:
Jeromy
2018-07-09 08:45:23 -07:00
parent 8a9aa41542
commit 310b16528b
3 changed files with 7 additions and 2 deletions

View File

@ -58,6 +58,11 @@ Various other changes were merged in this release, including great
documentation, a good number of smaller bugfixes, refactoring and a good bit
more. For the details, see the changelog below.
## 0.4.16-rc3 2018-07-09
- Bugfixes
- Fix dht commands when ipns over pubsub is enabled ([ipfs/go-ipfs#5200](https://github.com/ipfs/go-ipfs/pull/5200))
- Fix content routing when ipns over pubsub is enabled ([ipfs/go-ipfs#5200](https://github.com/ipfs/go-ipfs/pull/5200))
- Correctly handle multi-hop dnslink resolution ([ipfs/go-ipfs#5202](https://github.com/ipfs/go-ipfs/pull/5202))
## 0.4.16-rc2 2018-07-05
- Bugfixes

View File

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

View File

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