@cryptotaxi247 / kubo / commits / ec51450d0

go-ipfs version 0.3.7 release

This patch update fixes a problem we introduced in 0.3.6 and did not catch: the webui failed to work with out-of-the-box CORS configs. License: MIT Signed-off-by: Juan Batiz-Benet <juan@benet.ai>

Juan Batiz-Benet committed Aug 2, 2015 at 15:55 UTC ec51450d071e50464c03a84ef1c3fe3ca902d0e1
2 files changed +11 -5
CHANGELOG.md
+10 -4
@@ -1,5 +1,11 @@
1 # go-ipfs changelog
2
3 +### 0.3.7 - 2015-08-02
4 +
5 +This patch update fixes a problem we introduced in 0.3.6 and did not
6 +catch: the webui failed to work with out-of-the-box CORS configs.
7 +This has been fixed and now should work correctly. @jbenet
8 +
9 ### 0.3.6 - 2015-07-30
10
11 This patch improves the resource consumption of go-ipfs,
@@ -20,14 +26,14 @@ fixes (yet again) windows builds.
26 * `ipfs swarm addrs local` now shows the local node's addrs @jbenet
27 * improved config json parsing @rht
28 * improved Dockerfile to use alpine linux @Luzifer @lgierth
23 - * improved bash completion @MichaelMure
29 + * improved bash completion @MichaelMure
30 * Improved 404 for gateway @cryptix
31 * add unixfs ls to list correct filesizes @wking
32 * ignore hidden files by default @gatesvp
33 * global --timeout flag @whyrusleeping
34 * fix random API failures by closing resp bodies @whyrusleeping
35 * ipfs swarm filters @whyrusleeping
30 - * api returns errors in http trailers @whyrusleeping @jbenet
36 + * api returns errors in http trailers @whyrusleeping @jbenet
37 * `ipfs patch` learned to create intermediate nodes @whyrusleeping
38 * `ipfs object stat` now shows Hash @whyrusleeping
39 * `ipfs cat` now clears progressbar on exit @rht
@@ -37,10 +43,10 @@ fixes (yet again) windows builds.
43 * API now supports CORS properly from config @jbenet
44 * **Deprecated:** `API_ORIGIN` env var (use config, see `ipfs daemon --help`) @jbenet
45
40 -* General Codebase
46 +* General Codebase
47 * `nofuse` tag for windows @Luzifer
48 * improved `ipfs add` code @gatesvp
43 - * started requiring license trailers @chriscool @jbenet
49 + * started requiring license trailers @chriscool @jbenet
50 * removed CtxCloser for goprocess @rht
51 * remove deadcode @lgierth @whyrusleeping
52 * reduced number of logging libs to 2 (soon to be 1) @rht
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.6"
11 +const CurrentVersionNumber = "0.3.7"
12
13 // Version regulates checking if the most recent version is run
14 type Version struct {