From b6b92612a8e9c029912af9bb58472e56cc009254 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Tue, 26 Feb 2019 14:06:17 -0700 Subject: [PATCH 1/3] CHANGELOG: add instructions for enabling truncate on a badger datastore License: MIT Signed-off-by: Steven Allen --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7b5d85c4d20..f4dc00ead63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -220,6 +220,10 @@ _delete_ any un-synced data on start instead of simply refusing to start. This should be safe on all filesystems where the `sync` operation is safe and removes the need for manual intervention when restarting an IPFS node after a crash. +Assuming you initialized your badger repo with `ipfs init --profile=badgerds`, +you can enable truncate on an existing repo by running: `ipfs config --json +"Datastore.Spec.child.truncate" true`. + ### Refactors and Endeavors #### 🕹 Commands Library From 83d3f7672b82ccb03e4c106d93e9dadc6427f246 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Tue, 26 Feb 2019 13:49:06 -0700 Subject: [PATCH 2/3] release 0.4.19 License: MIT Signed-off-by: Steven Allen --- .gx/lastpubver | 2 +- CHANGELOG.md | 2 +- package.json | 2 +- version.go | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.gx/lastpubver b/.gx/lastpubver index 07f099c8d40..53d55723c9c 100644 --- a/.gx/lastpubver +++ b/.gx/lastpubver @@ -1 +1 @@ -0.4.19-rc2: QmVAHbzEyo3tvf5QZQNDy4aiVjRsFeYNuPhp6xbzzmRrT8 +0.4.19: QmPDEJTb3WBHmvubsLXCaqRPC8dRgvFz7A4p96dxZbJuWL diff --git a/CHANGELOG.md b/CHANGELOG.md index f4dc00ead63..d1489a83ed8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # go-ipfs changelog -## 0.4.19 2018-02-14 (unreleased) +## 0.4.19 2018-03-01 We're happy to announce go 0.4.19. This release contains a bunch of important fixes and a slew of new and improved features. Get pumped and upgrade ASAP to benefit from all the new goodies! 🎁 diff --git a/package.json b/package.json index da143639f43..7126c283efd 100644 --- a/package.json +++ b/package.json @@ -617,6 +617,6 @@ "language": "go", "license": "MIT", "name": "go-ipfs", - "version": "0.4.19-rc2" + "version": "0.4.19" } diff --git a/version.go b/version.go index 3649403168a..c9270c20f84 100644 --- a/version.go +++ b/version.go @@ -4,6 +4,6 @@ package ipfs var CurrentCommit string // CurrentVersionNumber is the current application's version literal -const CurrentVersionNumber = "0.4.19-rc2" +const CurrentVersionNumber = "0.4.19" const ApiVersion = "/go-ipfs/" + CurrentVersionNumber + "/" From 0cbb3d41992b9cc9b043f860d6d6d026cf908ba9 Mon Sep 17 00:00:00 2001 From: Steven Allen Date: Tue, 26 Feb 2019 13:49:27 -0700 Subject: [PATCH 3/3] bump version to 0.4.20-dev License: MIT Signed-off-by: Steven Allen --- version.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.go b/version.go index c9270c20f84..2545b8019d7 100644 --- a/version.go +++ b/version.go @@ -4,6 +4,6 @@ package ipfs var CurrentCommit string // CurrentVersionNumber is the current application's version literal -const CurrentVersionNumber = "0.4.19" +const CurrentVersionNumber = "0.4.20-dev" const ApiVersion = "/go-ipfs/" + CurrentVersionNumber + "/"