mirror of
https://github.com/ipfs/kubo.git
synced 2026-02-21 10:27:46 +08:00
Ipfs v0.4.13-rc1
License: MIT Signed-off-by: Jeromy <jeromyj@gmail.com>
This commit is contained in:
parent
8f8fdc093d
commit
bbf023fb10
10
CHANGELOG.md
10
CHANGELOG.md
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
@ -493,6 +493,6 @@
|
||||
"language": "go",
|
||||
"license": "MIT",
|
||||
"name": "go-ipfs",
|
||||
"version": "0.4.13-dev"
|
||||
"version": "0.4.13-rc1"
|
||||
}
|
||||
|
||||
|
||||
@ -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 + "/"
|
||||
|
||||
Loading…
Reference in New Issue
Block a user