@cryptotaxi247 / kubo / commits / 220d6b168

Ipfs version 0.3.9

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

Jeromy committed Oct 29, 2015 at 19:15 UTC 220d6b168f06c6e6bdb458effa2a27e8f5d7c439
3 files changed +60 -1
CHANGELOG.md
+40
@@ -1,5 +1,45 @@
1 # go-ipfs changelog
2
3 +### 0.3.9 - 2015-10-30
4 +
5 +This patch update includes a good number of bugfixes, notably, it fixes
6 +builds on windows, and puts newlines between streaming json objects for a
7 +proper nsjon format.
8 +
9 +* Features
10 + * Writable gateway enabled again (@cryptix)
11 +
12 +* Bugfixes
13 + * fix windows builds (@whyrusleeping)
14 + * content type on command responses default to text (@whyrusleeping)
15 + * add check to makefile to ensure windows builds dont fail silently (@whyrusleeping)
16 + * put newlines between streaming json output objects (@whyrusleeping)
17 + * fix streaming output to flush per write (@whyrusleeping)
18 + * purposely fail builds pre go1.5 (@whyrusleeping)
19 + * fix ipfs id <self> (@whyrusleeping)
20 + * fix a few race conditions in mocknet (@whyrusleeping)
21 + * fix makefile failing when not in a git repo (@whyrusleeping)
22 + * fix cli flag orders (long, short) (@rht)
23 + * fix races in http cors (@miolini)
24 + * small webui update (some bugfixes) (@jbenet)
25 +
26 +* Tool Changes
27 + * make swarm connect return an error when it fails (@whyrusleeping)
28 + * Add short flag for `ipfs ls --headers` (v for verbose) (@rht)
29 +
30 +* General Codebase
31 + * bitswap: clean log printf and humanize dup data count (@cryptix)
32 + * config: update pluto's peerID (@lgierth)
33 + * config: update bootstrap list hostname (@lgierth)
34 +
35 +* Documentation
36 + * Pared down contribute to link to new go guidelines (@richardlitt)
37 +
38 +* Testing
39 + * t0010: add tests for 'ipfs commands --flags' (@chriscool)
40 + * ipns_test: fix namesys.NewNameSystem() call (@chriscool)
41 + * t0060: fail if no nc (@chriscool)
42 +
43 ### 0.3.8 - 2015-10-09
44
45 This patch update includes changes to make ipns more consistent and reliable,
misc/release-checklist.md new
+19
@@ -0,0 +1,19 @@
1 +# ipfs release checklist
2 +
3 +- [ ] version changed in repo/config/version.go
4 +- [ ] changelog.md updated
5 +- [ ] commit tagged
6 +- [ ] tests
7 + - [ ] go-ipfs tests
8 + - [ ] sharness tests
9 + - [ ] webui works
10 + - [ ] js-ipfs-api tests
11 +- [ ] builds
12 + - [ ] windows
13 + - [ ] linux
14 + - [ ] amd64
15 + - [ ] arm
16 + - [ ] osx
17 +
18 +## post release
19 +- [ ] bump repo/config/version.go to $NEXT-dev
repo/config/version.go
+1 -1
@@ -8,7 +8,7 @@ import (
8 )
9
10 // CurrentVersionNumber is the current application's version literal
11 -const CurrentVersionNumber = "0.3.9-dev"
11 +const CurrentVersionNumber = "0.3.9"
12
13 // CurrentCommit is the current git commit, this is set as a ldflag in the Makefile
14 var CurrentCommit string