File tree 4 files changed +13
-3
lines changed 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 1
1
# go-ipfs changelog
2
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
+
3
13
## 0.4.12 2017-11-09
4
14
5
15
Ipfs 0.4.12 brings with it many important fixes for the huge spike in network
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
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
4
5
5
git log --oneline --merges --reverse $LAST_TAG ...master |
6
6
while read MERGE
Original file line number Diff line number Diff line change 493
493
"language" : " go" ,
494
494
"license" : " MIT" ,
495
495
"name" : " go-ipfs" ,
496
- "version" : " 0.4.13-dev "
496
+ "version" : " 0.4.13-rc1 "
497
497
}
498
498
Original file line number Diff line number Diff line change @@ -4,6 +4,6 @@ package config
4
4
var CurrentCommit string
5
5
6
6
// CurrentVersionNumber is the current application's version literal
7
- const CurrentVersionNumber = "0.4.13-dev "
7
+ const CurrentVersionNumber = "0.4.13-rc1 "
8
8
9
9
const ApiVersion = "/go-ipfs/" + CurrentVersionNumber + "/"
You can’t perform that action at this time.
0 commit comments