version bump to 0.3.0
This commit includes a poor attempt at a changelog.
Juan Batiz-Benet committed
Apr 20, 2015 at 03:59 UTC
b948bd65f9e540e973e35fc8975cf69ddbc1901c
2 files changed
+43
-3
CHANGELOG.md
+42
-2
@@ -1,8 +1,48 @@
1
# go-ipfs changelog
2
3
-Until we near full stability, this changelog must only
4
-list breakages and backwards incompatible changes.
3
4
+### 0.3.0 - 2015-04-20
5
+
6
+We've just released version 0.3.0, which contains many
7
+performance improvements, bugfixes, and new features.
8
+Perhaps the most noticeable change is moving block storage
9
+from leveldb to flat files in the filesystem.
10
+
11
+What to expect:
12
+
13
+* _much faster_ performance
14
+
15
+* Repo format 2
16
+ * moved default location from ~/.go-ipfs -> ~/.ipfs
17
+ * renamed lock filename daemon.lock -> repo.lock
18
+ * now using a flat-file datastore for local blocks
19
+
20
+* Fixed lots of bugs
21
+ * proper ipfs-path in various commands
22
+ * fixed two pinning bugs (recursive pins)
23
+ * increased yamux streams window (for speed)
24
+ * increased bitswap workers (+ env var)
25
+ * fixed memory leaks
26
+ * ipfs add error returns
27
+ * daemon exit bugfix
28
+ * set proper UID and GID on fuse mounts
29
+
30
+* Gateway
31
+ * Added support for HEAD requests
32
+
33
+* configuration
34
+ * env var to turn off SO_REUSEPORT: IPFS_REUSEPORT=false
35
+ * env var to increase bitswap workers: IPFS_BITSWAP_TASK_WORKERS=n
36
+
37
+* other
38
+ * bash completion is now available
39
+ * ipfs stats bw -- bandwidth meetering
40
+
41
+And many more things.
42
+
43
+### 0.2.3 - 2015-03-01
44
+
45
+* Alpha Release
46
47
### 2015-01-31:
48
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.2.3"
11
+const CurrentVersionNumber = "0.3.0"
12
13
// Version regulates checking if the most recent version is run
14
type Version struct {