forked from Lainports/freebsd-ports
* Fix the rc script when default ipfs_go_path is used * Fix the logging by switching to uses the syslog logging in daemon * Switch the init to using the --init flag to the ipfs daemon command * Fixes the version string since the tarball provided by upstream doesn't match the tag for this release (has version string wrong) * Allow overriding IPFS_USER/GROUP/HOME at build time * Remove unnecessary BEFORE: LOGIN from rc script PR: 235222 Approved by: jhixson (maintainer)
10 lines
331 B
Go
10 lines
331 B
Go
--- version.go.orig 2019-01-26 18:22:10 UTC
|
|
+++ version.go
|
|
@@ -4,6 +4,6 @@ package ipfs
|
|
var CurrentCommit string
|
|
|
|
// CurrentVersionNumber is the current application's version literal
|
|
-const CurrentVersionNumber = "0.4.19-dev"
|
|
+const CurrentVersionNumber = "0.4.18"
|
|
|
|
const ApiVersion = "/go-ipfs/" + CurrentVersionNumber + "/"
|