@cryptotaxi247 / kubo / commits / 310b16528

Ipfs v0.4.16-rc3

License: MIT Signed-off-by: Jeromy <jeromyj@gmail.com>

Jeromy committed Jul 9, 2018 at 08:45 UTC 310b16528bb611f375d985a2fbc174166cd3f28e
3 files changed +7 -2
CHANGELOG.md
+5
@@ -58,6 +58,11 @@ Various other changes were merged in this release, including great
58 documentation, a good number of smaller bugfixes, refactoring and a good bit
59 more. For the details, see the changelog below.
60
61 +## 0.4.16-rc3 2018-07-09
62 +- Bugfixes
63 + - Fix dht commands when ipns over pubsub is enabled ([ipfs/go-ipfs#5200](https://github.com/ipfs/go-ipfs/pull/5200))
64 + - Fix content routing when ipns over pubsub is enabled ([ipfs/go-ipfs#5200](https://github.com/ipfs/go-ipfs/pull/5200))
65 + - Correctly handle multi-hop dnslink resolution ([ipfs/go-ipfs#5202](https://github.com/ipfs/go-ipfs/pull/5202))
66
67 ## 0.4.16-rc2 2018-07-05
68 - Bugfixes
package.json
+1 -1
@@ -551,6 +551,6 @@
551 "language": "go",
552 "license": "MIT",
553 "name": "go-ipfs",
554 - "version": "0.4.16-rc2"
554 + "version": "0.4.16-rc3"
555 }
556
repo/config/version.go
+1 -1
@@ -4,6 +4,6 @@ package config
4 var CurrentCommit string
5
6 // CurrentVersionNumber is the current application's version literal
7 -const CurrentVersionNumber = "0.4.16-rc2"
7 +const CurrentVersionNumber = "0.4.16-rc3"
8
9 const ApiVersion = "/go-ipfs/" + CurrentVersionNumber + "/"