Skip to content

Commit 71d7cf7

Browse files
authored
Merge pull request #6026 from ipfs/feat/release-0.4.19
Release 0.4.19
2 parents 64dee03 + 0cbb3d4 commit 71d7cf7

File tree

4 files changed

+8
-4
lines changed

4 files changed

+8
-4
lines changed

.gx/lastpubver

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.4.19-rc2: QmVAHbzEyo3tvf5QZQNDy4aiVjRsFeYNuPhp6xbzzmRrT8
1+
0.4.19: QmPDEJTb3WBHmvubsLXCaqRPC8dRgvFz7A4p96dxZbJuWL

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# go-ipfs changelog
22

3-
## 0.4.19 2018-02-14 (unreleased)
3+
## 0.4.19 2018-03-01
44

55
We're happy to announce go 0.4.19. This release contains a bunch of important
66
fixes and a slew of new and improved features. Get pumped and upgrade ASAP to benefit from all the new goodies! 🎁
@@ -220,6 +220,10 @@ _delete_ any un-synced data on start instead of simply refusing to start. This
220220
should be safe on all filesystems where the `sync` operation is safe and removes
221221
the need for manual intervention when restarting an IPFS node after a crash.
222222

223+
Assuming you initialized your badger repo with `ipfs init --profile=badgerds`,
224+
you can enable truncate on an existing repo by running: `ipfs config --json
225+
"Datastore.Spec.child.truncate" true`.
226+
223227
### Refactors and Endeavors
224228

225229
#### 🕹 Commands Library

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -617,6 +617,6 @@
617617
"language": "go",
618618
"license": "MIT",
619619
"name": "go-ipfs",
620-
"version": "0.4.19-rc2"
620+
"version": "0.4.19"
621621
}
622622

version.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ package ipfs
44
var CurrentCommit string
55

66
// CurrentVersionNumber is the current application's version literal
7-
const CurrentVersionNumber = "0.4.19-rc2"
7+
const CurrentVersionNumber = "0.4.20-dev"
88

99
const ApiVersion = "/go-ipfs/" + CurrentVersionNumber + "/"

0 commit comments

Comments
 (0)