@cryptotaxi247 / kubo / commits / 7bc924918

Ipfs v0.4.12-rc1

License: MIT Signed-off-by: Jeromy <jeromyj@gmail.com>

Jeromy committed Oct 26, 2017 at 04:57 UTC 7bc924918893bd0a3ef2bb8abb30879a7a7fa0d7
3 files changed +33 -2
CHANGELOG.md
+31
@@ -1,5 +1,36 @@
1 # go-ipfs changelog
2
3 +## 0.4.12-rc1 2017-10-26
4 +
5 +- Features
6 + - Implement Connection Manager ([ipfs/go-ipfs#4288](https://github.com/ipfs/go-ipfs/pull/4288))
7 + - Support multiple files in dag put ([ipfs/go-ipfs#4254](https://github.com/ipfs/go-ipfs/pull/4254))
8 + - Add 'raw' support to the dag put command ([ipfs/go-ipfs#4285](https://github.com/ipfs/go-ipfs/pull/4285))
9 +- Improvements
10 + - Parallelize dag batch flushing ([ipfs/go-ipfs#4296](https://github.com/ipfs/go-ipfs/pull/4296))
11 + - Update go-peerstream to improve CPU usage ([ipfs/go-ipfs#4323](https://github.com/ipfs/go-ipfs/pull/4323))
12 + - Add full support for CidV1 in Files API and Dag Modifier ([ipfs/go-ipfs#4026](https://github.com/ipfs/go-ipfs/pull/4026))
13 + - Lower yamux accept buffer size ([ipfs/go-ipfs#4326](https://github.com/ipfs/go-ipfs/pull/4326))
14 +- Documentation
15 + - Add some docs on plugins ([ipfs/go-ipfs#4255](https://github.com/ipfs/go-ipfs/pull/4255))
16 + - Add more info about private network bootstrap ([ipfs/go-ipfs#4270](https://github.com/ipfs/go-ipfs/pull/4270))
17 + - Add more info about `ipfs add` chunker option ([ipfs/go-ipfs#4306](https://github.com/ipfs/go-ipfs/pull/4306))
18 +- Bugfixes
19 + - Fix FreeBSD build issues ([ipfs/go-ipfs#4275](https://github.com/ipfs/go-ipfs/pull/4275))
20 + - Don't crash when Datastore.StorageMax is not defined ([ipfs/go-ipfs#4246](https://github.com/ipfs/go-ipfs/pull/4246))
21 + - Do not call 'Connect' on NewStream in bitswap ([ipfs/go-ipfs#4317](https://github.com/ipfs/go-ipfs/pull/4317))
22 + - Filter out "" from active peers in bitswap sessions ([ipfs/go-ipfs#4316](https://github.com/ipfs/go-ipfs/pull/4316))
23 + - Fix "seeker can't seek" on specific files ([ipfs/go-ipfs#4320](https://github.com/ipfs/go-ipfs/pull/4320))
24 + - Do not set "gecos" field in Dockerfile ([ipfs/go-ipfs#4331](https://github.com/ipfs/go-ipfs/pull/4331))
25 + - Handle sym links in when calculating repo size ([ipfs/go-ipfs#4305](https://github.com/ipfs/go-ipfs/pull/4305))
26 +- General Changes and Refactorings
27 + - Fix indent in sharness tests ([ipfs/go-ipfs#4212](https://github.com/ipfs/go-ipfs/pull/4212))
28 + - Remove supernode routing ([ipfs/go-ipfs#4302](https://github.com/ipfs/go-ipfs/pull/4302))
29 + - Extract go-ipfs-addr ([ipfs/go-ipfs#4340](https://github.com/ipfs/go-ipfs/pull/4340))
30 +- Testing
31 + - Make sharness t0180-p2p less racy ([ipfs/go-ipfs#4310](https://github.com/ipfs/go-ipfs/pull/4310))
32 +
33 +
34 ### 0.4.11 2017-09-14
35
36 Ipfs 0.4.11 is a larger release that brings many long-awaited features and
package.json
+1 -1
@@ -493,6 +493,6 @@
493 "language": "go",
494 "license": "MIT",
495 "name": "go-ipfs",
496 - "version": "0.4.12-dev"
496 + "version": "0.4.12-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.12-dev"
7 +const CurrentVersionNumber = "0.4.12-rc1"
8
9 const ApiVersion = "/go-ipfs/" + CurrentVersionNumber + "/"