Ipfs v0.4.13-rc1

License: MIT
Signed-off-by: Jeromy <jeromyj@gmail.com>
This commit is contained in:
Jeromy 2017-11-14 13:46:10 -08:00
parent 8f8fdc093d
commit bbf023fb10
4 changed files with 13 additions and 3 deletions

View File

@ -1,5 +1,15 @@
# go-ipfs changelog
## 0.4.13 2017-11-14
Ipfs 0.4.13 is a patch release that fixes two high priority issues that were
discovered in the 0.4.12 release.
Bugfixes:
- Fix periodic bitswap deadlock ([ipfs/go-ipfs#4386](https://github.com/ipfs/go-ipfs/pull/4386))
- Fix badgerds crash on startup ([ipfs/go-ipfs#4384](https://github.com/ipfs/go-ipfs/pull/4384))
## 0.4.12 2017-11-09
Ipfs 0.4.12 brings with it many important fixes for the huge spike in network

View File

@ -1,6 +1,6 @@
#!/bin/bash
LAST_TAG=$(git tag | grep -v -- '-rc' | grep 'v'| tail -n1)
LAST_TAG=$(git tag -l | sort -V | grep -v -- '-rc' | grep 'v'| tail -n1)
git log --oneline --merges --reverse $LAST_TAG...master |
while read MERGE

View File

@ -493,6 +493,6 @@
"language": "go",
"license": "MIT",
"name": "go-ipfs",
"version": "0.4.13-dev"
"version": "0.4.13-rc1"
}

View File

@ -4,6 +4,6 @@ package config
var CurrentCommit string
// CurrentVersionNumber is the current application's version literal
const CurrentVersionNumber = "0.4.13-dev"
const CurrentVersionNumber = "0.4.13-rc1"
const ApiVersion = "/go-ipfs/" + CurrentVersionNumber + "/"