Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: ipfs/kubo
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: b19dd47f14af
Choose a base ref
...
head repository: ipfs/kubo
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ec51450d071e
Choose a head ref
  • 2 commits
  • 3 files changed
  • 1 contributor

Commits on Aug 2, 2015

  1. release checklist

    License: MIT
    Signed-off-by: Juan Batiz-Benet <juan@benet.ai>
    jbenet committed Aug 2, 2015
    Copy the full SHA
    4a8c938 View commit details
  2. 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>
    jbenet committed Aug 2, 2015
    Copy the full SHA
    ec51450 View commit details
Showing with 19 additions and 5 deletions.
  1. +10 −4 CHANGELOG.md
  2. +8 −0 docs/release-checklist.md
  3. +1 −1 repo/config/version.go
14 changes: 10 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# go-ipfs changelog

### 0.3.7 - 2015-08-02

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.
This has been fixed and now should work correctly. @jbenet

### 0.3.6 - 2015-07-30

This patch improves the resource consumption of go-ipfs,
@@ -20,14 +26,14 @@ fixes (yet again) windows builds.
* `ipfs swarm addrs local` now shows the local node's addrs @jbenet
* improved config json parsing @rht
* improved Dockerfile to use alpine linux @Luzifer @lgierth
* improved bash completion @MichaelMure
* improved bash completion @MichaelMure
* Improved 404 for gateway @cryptix
* add unixfs ls to list correct filesizes @wking
* ignore hidden files by default @gatesvp
* global --timeout flag @whyrusleeping
* fix random API failures by closing resp bodies @whyrusleeping
* ipfs swarm filters @whyrusleeping
* api returns errors in http trailers @whyrusleeping @jbenet
* api returns errors in http trailers @whyrusleeping @jbenet
* `ipfs patch` learned to create intermediate nodes @whyrusleeping
* `ipfs object stat` now shows Hash @whyrusleeping
* `ipfs cat` now clears progressbar on exit @rht
@@ -37,10 +43,10 @@ fixes (yet again) windows builds.
* API now supports CORS properly from config @jbenet
* **Deprecated:** `API_ORIGIN` env var (use config, see `ipfs daemon --help`) @jbenet

* General Codebase
* General Codebase
* `nofuse` tag for windows @Luzifer
* improved `ipfs add` code @gatesvp
* started requiring license trailers @chriscool @jbenet
* started requiring license trailers @chriscool @jbenet
* removed CtxCloser for goprocess @rht
* remove deadcode @lgierth @whyrusleeping
* reduced number of logging libs to 2 (soon to be 1) @rht
8 changes: 8 additions & 0 deletions docs/release-checklist.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# go-ipfs release checklist

[ ] all tests pass (no exceptions)
[ ] webui works (for most definitions of 'works')
[ ] CHANGELOG.md has been updated
[ ] version string in `repo/config/version.go` has been updated
[ ] tag commit with vX.Y.Z
[ ] update release branch to point to release commit
2 changes: 1 addition & 1 deletion repo/config/version.go
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ import (
)

// CurrentVersionNumber is the current application's version literal
const CurrentVersionNumber = "0.3.6"
const CurrentVersionNumber = "0.3.7"

// Version regulates checking if the most recent version is run
type Version struct {