IPFS Versions 0.3.11 release
License: MIT Signed-off-by: Jeromy <jeromyj@gmail.com>
Jeromy committed
Jan 12, 2016 at 06:35 UTC
b7d35e3af596bd2241a9633f3c11080f01b9b494
2 files changed
+4
-1
docs/release-checklist.md
+3
@@ -1,8 +1,11 @@
1
# go-ipfs release checklist
2
3
+- [ ] before release, tag 'release canidate' for users to test against
4
+ - if bugs are found/fixed, do another release canidate
5
- [ ] all tests pass (no exceptions)
6
- [ ] webui works (for most definitions of 'works')
7
- [ ] CHANGELOG.md has been updated
8
+ - use `git log --pretty=short vLAST..master`
9
- [ ] version string in `repo/config/version.go` has been updated
10
- [ ] tag commit with vX.Y.Z
11
- [ ] update release branch to point to release commit
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.11-dev"
11
+const CurrentVersionNumber = "0.3.11"
12
13
const ApiVersion = "/go-ipfs/" + CurrentVersionNumber + "/"
14