From f4a1a9ef61e766df933189b3b749f68ae0ad2910 Mon Sep 17 00:00:00 2001 From: Jeromy Date: Sun, 18 Mar 2018 22:37:26 -0700 Subject: [PATCH] ipfs release 0.4.14-rc3 License: MIT Signed-off-by: Jeromy --- CHANGELOG.md | 7 +++++++ package.json | 2 +- repo/config/version.go | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 545804c7211..38e23fa2e83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -54,6 +54,13 @@ did allow manually creating them and fetching them from other peers. If you currently have objects using insecure hashes in your local ipfs repo, please remove them before updating. +#### Changes from rc2 to rc3 +- Fix bug in stdin argument parsing ([ipfs/go-ipfs#4827](https://github.com/ipfs/go-ipfs/pull/4827)) +- Revert commands back to sending a single response ([ipfs/go-ipfs#4822](https://github.com/ipfs/go-ipfs/pull/4822)) + +#### Changes from rc1 to rc2 +- Fix issue in ipfs get caused by go1.10 changes ([ipfs/go-ipfs#4790](https://github.com/ipfs/go-ipfs/pull/4790)) + - Features - Pubsub IPNS Publisher and Resolver (experimental) ([ipfs/go-ipfs#4047](https://github.com/ipfs/go-ipfs/pull/4047)) - Implement coreapi Dag interface ([ipfs/go-ipfs#4471](https://github.com/ipfs/go-ipfs/pull/4471)) diff --git a/package.json b/package.json index e7e9127553d..5c12a7fe43e 100644 --- a/package.json +++ b/package.json @@ -581,6 +581,6 @@ "language": "go", "license": "MIT", "name": "go-ipfs", - "version": "0.4.14-rc2" + "version": "0.4.14-rc3" } diff --git a/repo/config/version.go b/repo/config/version.go index b8e15990d43..cc460f85810 100644 --- a/repo/config/version.go +++ b/repo/config/version.go @@ -4,6 +4,6 @@ package config var CurrentCommit string // CurrentVersionNumber is the current application's version literal -const CurrentVersionNumber = "0.4.14-rc2" +const CurrentVersionNumber = "0.4.14-rc3" const ApiVersion = "/go-ipfs/" + CurrentVersionNumber + "/"