From 7bcc9caa84ced72eef50b98617b41659ad100fb4 Mon Sep 17 00:00:00 2001 From: Jeromy Date: Mon, 2 Jul 2018 18:21:32 -0700 Subject: [PATCH] Ipfs 0.4.16 release License: MIT Signed-off-by: Whyrusleeping --- .gx/lastpubver | 2 +- CHANGELOG.md | 1 + package.json | 2 +- repo/config/version.go | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.gx/lastpubver b/.gx/lastpubver index 6dbba7996..5286b46af 100644 --- a/.gx/lastpubver +++ b/.gx/lastpubver @@ -1 +1 @@ -0.4.16-rc3: QmamgrmUW2VvJA8FsGGvgYMfSdZzQMzk1fAJewMJEEQrf9 +0.4.16: QmTRP6dcuYwcGDvAH8HvJtoupPrhZDQ8AoxMEn9gMzbgMy diff --git a/CHANGELOG.md b/CHANGELOG.md index 01afc1d7d..9064e5b53 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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)) diff --git a/package.json b/package.json index 8d9fef00c..748f889b2 100644 --- a/package.json +++ b/package.json @@ -551,6 +551,6 @@ "language": "go", "license": "MIT", "name": "go-ipfs", - "version": "0.4.16-rc3" + "version": "0.4.16" } diff --git a/repo/config/version.go b/repo/config/version.go index 6b57a8e9d..ba6b4cf2e 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.16-rc3" +const CurrentVersionNumber = "0.4.16" const ApiVersion = "/go-ipfs/" + CurrentVersionNumber + "/"