ipfs release 0.4.14-rc3
License: MIT Signed-off-by: Jeromy <jeromyj@gmail.com>
Jeromy committed
Mar 18, 2018 at 22:37 UTC
f4a1a9ef61e766df933189b3b749f68ae0ad2910
3 files changed
+9
-2
CHANGELOG.md
+7
@@ -54,6 +54,13 @@ did allow manually creating them and fetching them from other peers. If you
54
currently have objects using insecure hashes in your local ipfs repo, please
55
remove them before updating.
56
57
+#### Changes from rc2 to rc3
58
+- Fix bug in stdin argument parsing ([ipfs/go-ipfs#4827](https://github.com/ipfs/go-ipfs/pull/4827))
59
+- Revert commands back to sending a single response ([ipfs/go-ipfs#4822](https://github.com/ipfs/go-ipfs/pull/4822))
60
+
61
+#### Changes from rc1 to rc2
62
+- Fix issue in ipfs get caused by go1.10 changes ([ipfs/go-ipfs#4790](https://github.com/ipfs/go-ipfs/pull/4790))
63
+
64
- Features
65
- Pubsub IPNS Publisher and Resolver (experimental) ([ipfs/go-ipfs#4047](https://github.com/ipfs/go-ipfs/pull/4047))
66
- Implement coreapi Dag interface ([ipfs/go-ipfs#4471](https://github.com/ipfs/go-ipfs/pull/4471))
package.json
+1
-1
@@ -581,6 +581,6 @@
581
"language": "go",
582
"license": "MIT",
583
"name": "go-ipfs",
584
- "version": "0.4.14-rc2"
584
+ "version": "0.4.14-rc3"
585
}
586
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.14-rc2"
7
+const CurrentVersionNumber = "0.4.14-rc3"
8
9
const ApiVersion = "/go-ipfs/" + CurrentVersionNumber + "/"