@cryptotaxi247 / kubo / commits / 9d166b0aa

Update changelog and bump version for 0.4.9-rc1

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

Jeromy committed Apr 30, 2017 at 22:29 UTC 9d166b0aa157e04f36234fbfc8a790f97dc6b9d1
3 files changed +29 -2
CHANGELOG.md
+27
@@ -1,5 +1,32 @@
1 # go-ipfs changelog
2
3 +### 0.4.9 - 2017-04-30
4 +
5 +- Features
6 + - Add support for using CidV1 in 'ipfs add' ([ipfs/go-ipfs#3743](https://github.com/ipfs/go-ipfs/pull/3743))
7 +- Improvements
8 + - Use CID as an ETag strong validator ([ipfs/go-ipfs#3869](https://github.com/ipfs/go-ipfs/pull/3869))
9 + - Update go-multihash with keccak and bitcoin hashes ([ipfs/go-ipfs#3833](https://github.com/ipfs/go-ipfs/pull/3833))
10 + - Update go-is-domain to contain new gTLD ([ipfs/go-ipfs#3873](https://github.com/ipfs/go-ipfs/pull/3873))
11 + - Periodically flush cached directories during ipfs add ([ipfs/go-ipfs#3888](https://github.com/ipfs/go-ipfs/pull/3888))
12 +- Documentation
13 + - Change issue template to use Severity instead of Priority ([ipfs/go-ipfs#3834](https://github.com/ipfs/go-ipfs/pull/3834))
14 + - Fix link to commit hook script in contribute.md ([ipfs/go-ipfs#3863](https://github.com/ipfs/go-ipfs/pull/3863))
15 + - Fix install_unsupported for openbsd, add docs ([ipfs/go-ipfs#3880](https://github.com/ipfs/go-ipfs/pull/3880))
16 +- Bugfixes
17 + - Fix wanlist typo in prometheus metric name ([ipfs/go-ipfs#3841](https://github.com/ipfs/go-ipfs/pull/3841))
18 + - Fix `make install` not using ldflags for git hash ([ipfs/go-ipfs#3838](https://github.com/ipfs/go-ipfs/pull/3838))
19 + - Fix `make install` not installing dependencies ([ipfs/go-ipfs#3848](https://github.com/ipfs/go-ipfs/pull/3848))
20 + - Fix erroneous Cache-Control: immutable on dir listings ([ipfs/go-ipfs#3870](https://github.com/ipfs/go-ipfs/pull/3870))
21 + - Fix bitswap accounting of 'BytesSent' in ledger ([ipfs/go-ipfs#3876](https://github.com/ipfs/go-ipfs/pull/3876))
22 + - Fix gateway handling of sharded directories ([ipfs/go-ipfs#3889](https://github.com/ipfs/go-ipfs/pull/3889))
23 + - Fix sharding memory growth, and fix resolver for unixfs paths ([ipfs/go-ipfs#3890](https://github.com/ipfs/go-ipfs/pull/3890))
24 +- General Changes and Refactorings
25 + - Use ctx var consistently in daemon.go ([ipfs/go-ipfs#3864](https://github.com/ipfs/go-ipfs/pull/3864))
26 + - Handle 404 correctly in dist_get tool ([ipfs/go-ipfs#3879](https://github.com/ipfs/go-ipfs/pull/3879))
27 +- Testing
28 + - Fix go fuse tests ([ipfs/go-ipfs#3840](https://github.com/ipfs/go-ipfs/pull/3840))
29 +
30 ### 0.4.8 - 2017-03-29
31
32 Ipfs 0.4.8 brings with it several improvements, bugfixes, documentation
package.json
+1 -1
@@ -312,6 +312,6 @@
312 "language": "go",
313 "license": "MIT",
314 "name": "go-ipfs",
315 - "version": "0.4.9-dev"
315 + "version": "0.4.9-rc1"
316 }
317
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.9-dev"
7 +const CurrentVersionNumber = "0.4.9-rc1"
8
9 const ApiVersion = "/go-ipfs/" + CurrentVersionNumber + "/"