Ipfs 0.4.5
License: MIT Signed-off-by: Jeromy <jeromyj@gmail.com>
Jeromy committed
Feb 11, 2017 at 13:51 UTC
81846eee5f732b319a5a084f5f26ea3f87035ebf
3 files changed
+11
-3
CHANGELOG.md
+9
-1
@@ -1,6 +1,14 @@
1
# go-ipfs changelog
2
3
-### 0.4.5 - 2017-02-06
3
+### 0.4.5 - 2017-02-11
4
+
5
+#### Changes from rc3 to rc4
6
+- Update to fixed webui. ([ipfs/go-ipfs#3669](https://github.com/ipfs/go-ipfs/pull/3669))
7
+
8
+#### Changes from rc2 to rc3
9
+- Fix handling of null arrays in cbor ipld objects. ([ipfs/go-ipfs#3666](https://github.com/ipfs/go-ipfs/pull/3666))
10
+- Add env var to enable yamux debug logging. ([ipfs/go-ipfs#3668](https://github.com/ipfs/go-ipfs/pull/3668))
11
+- Fix libc check during auto-migrations. ([ipfs/go-ipfs#3665](https://github.com/ipfs/go-ipfs/pull/3665))
12
13
#### Changes from rc1 to rc2
14
- Fixed json output of ipld objects in `ipfs dag get` ([ipfs/go-ipfs#3655](https://github.com/ipfs/go-ipfs/pull/3655))
package.json
+1
-1
@@ -305,6 +305,6 @@
305
"language": "go",
306
"license": "MIT",
307
"name": "go-ipfs",
308
- "version": "0.4.5-rc4"
308
+ "version": "0.4.5"
309
}
310
repo/config/version.go
+1
-1
@@ -4,6 +4,6 @@ package config
4
var CurrentCommit string
5
6
// CurrentVersionNumber is the current application's version literal
7
-const CurrentVersionNumber = "0.4.5-rc4"
7
+const CurrentVersionNumber = "0.4.5"
8
9
const ApiVersion = "/go-ipfs/" + CurrentVersionNumber + "/"