Ipfs v0.4.13-rc1
License: MIT Signed-off-by: Jeromy <jeromyj@gmail.com>
Jeromy committed
Nov 14, 2017 at 13:46 UTC
bbf023fb1031786cd27bde1ea3f2456ea0663020
4 files changed
+13
-3
CHANGELOG.md
+10
@@ -1,5 +1,15 @@
1
# go-ipfs changelog
2
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
+
13
## 0.4.12 2017-11-09
14
15
Ipfs 0.4.12 brings with it many important fixes for the huge spike in network
bin/mkreleaselog
+1
-1
@@ -1,6 +1,6 @@
1
#!/bin/bash
2
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)
4
5
git log --oneline --merges --reverse $LAST_TAG...master |
6
while read MERGE
package.json
+1
-1
@@ -493,6 +493,6 @@
493
"language": "go",
494
"license": "MIT",
495
"name": "go-ipfs",
496
- "version": "0.4.13-dev"
496
+ "version": "0.4.13-rc1"
497
}
498
repo/config/version.go
+1
-1
@@ -4,6 +4,6 @@ package config
4
var CurrentCommit string
5
6
// CurrentVersionNumber is the current application's version literal
7
-const CurrentVersionNumber = "0.4.13-dev"
7
+const CurrentVersionNumber = "0.4.13-rc1"
8
9
const ApiVersion = "/go-ipfs/" + CurrentVersionNumber + "/"