0.3.3 version
This patch update fixes various issues, in particular: - windows support (0.3.0 had broken it) - commandline parses spaces correctly. * much improved commandline parsing by @AtnNn * improved dockerfile by @luzifer * add cmd cleanup by @wking * fix flatfs windows support by @tv42 and @gatesvp * test case improvements by @chriscool * ipns resolution timeout bug fix by @whyrusleeping * new cluster tests with iptb by @whyrusleeping * fix log callstack printing bug by @whyrusleeping * document bash completiong by @dylanPowers
Juan Batiz-Benet committed
Apr 28, 2015 at 02:13 UTC
931a2db8cff9ef5789341a7c37e301fa336d4f7e
2 files changed
+17
-1
CHANGELOG.md
+16
@@ -1,5 +1,21 @@
1
# go-ipfs changelog
2
3
+### 0.3.3 - 2015-04-28
4
+
5
+This patch update fixes various issues, in particular:
6
+- windows support (0.3.0 had broken it)
7
+- commandline parses spaces correctly.
8
+
9
+* much improved commandline parsing by @AtnNn
10
+* improved dockerfile by @luzifer
11
+* add cmd cleanup by @wking
12
+* fix flatfs windows support by @tv42 and @gatesvp
13
+* test case improvements by @chriscool
14
+* ipns resolution timeout bug fix by @whyrusleeping
15
+* new cluster tests with iptb by @whyrusleeping
16
+* fix log callstack printing bug by @whyrusleeping
17
+* document bash completiong by @dylanPowers
18
+
19
### 0.3.2 - 2015-04-22
20
21
This patch update implements multicast dns as well as fxing a few test issues.
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.2"
11
+const CurrentVersionNumber = "0.3.3"
12
13
// Version regulates checking if the most recent version is run
14
type Version struct {