Skip to content

Commit 5d23fd7

Browse files
Merge pull request ipfs#4391 from ipfs/release-0.4.13-rc1
Ipfs v0.4.13-rc1
2 parents 8f8fdc0 + bbf023f commit 5d23fd7

File tree

4 files changed

+13
-3
lines changed

4 files changed

+13
-3
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# go-ipfs changelog
22

3+
## 0.4.13 2017-11-14
4+
5+
Ipfs 0.4.13 is a patch release that fixes two high priority issues that were
6+
discovered in the 0.4.12 release.
7+
8+
Bugfixes:
9+
- Fix periodic bitswap deadlock ([ipfs/go-ipfs#4386](https://github.com/ipfs/go-ipfs/pull/4386))
10+
- Fix badgerds crash on startup ([ipfs/go-ipfs#4384](https://github.com/ipfs/go-ipfs/pull/4384))
11+
12+
313
## 0.4.12 2017-11-09
414

515
Ipfs 0.4.12 brings with it many important fixes for the huge spike in network

bin/mkreleaselog

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
LAST_TAG=$(git tag | grep -v -- '-rc' | grep 'v'| tail -n1)
3+
LAST_TAG=$(git tag -l | sort -V | grep -v -- '-rc' | grep 'v'| tail -n1)
44

55
git log --oneline --merges --reverse $LAST_TAG...master |
66
while read MERGE

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -493,6 +493,6 @@
493493
"language": "go",
494494
"license": "MIT",
495495
"name": "go-ipfs",
496-
"version": "0.4.13-dev"
496+
"version": "0.4.13-rc1"
497497
}
498498

repo/config/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@ package config
44
var CurrentCommit string
55

66
// CurrentVersionNumber is the current application's version literal
7-
const CurrentVersionNumber = "0.4.13-dev"
7+
const CurrentVersionNumber = "0.4.13-rc1"
88

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

0 commit comments

Comments
 (0)