1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-23 21:47:52 +08:00

Merge pull request #5292 from ipfs/release-0.4.17

Ipfs v0.4.17
This commit is contained in:
Whyrusleeping
2018-07-27 14:21:59 -07:00
committed by GitHub
4 changed files with 7 additions and 12 deletions

View File

@ -1 +1 @@
0.4.17-rc1: Qma5pGQ9ugGoeAbND8RKPohYfZDyaivSCfRQraKkW8Gu4Y 0.4.17: QmebqVUQQqQFhg74FtQFszUJo22Vpr3e8qBAkvvV4ho9HH

View File

@ -1,15 +1,10 @@
# go-ipfs changelog # go-ipfs changelog
## 0.4.17-rc1 2018-07-20 ## 0.4.17 2018-07-27
Ipfs 0.4.17 is a quick release to fix two important bugs: Ipfs 0.4.17 is a quick release to fix a major performance regression in bitswap
(mostly affecting go-ipfs -> js-ipfs transfers). However, while motivated by
1. A major performance regression in bitswap (mostly affecting go-ipfs -> this fix, this release contains a few other goodies that will excite some users.
js-ipfs transfers).
2. A bug resolving files in sharded directories with the gateway.
However, while motivated by those fixes, it contains a few other goodies that
will excite some users.
The headline feature in this release is [urlstore][] support. Urlstore is a The headline feature in this release is [urlstore][] support. Urlstore is a
generalization of the filestore backend that can fetch file blocks from remote generalization of the filestore backend that can fetch file blocks from remote

View File

@ -551,6 +551,6 @@
"language": "go", "language": "go",
"license": "MIT", "license": "MIT",
"name": "go-ipfs", "name": "go-ipfs",
"version": "0.4.17-rc1" "version": "0.4.17"
} }

View File

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