From b0b070a8b44f8d1cd22cae86c2e45f1538ef1ff6 Mon Sep 17 00:00:00 2001 From: "John C. Vernaleo" Date: Fri, 16 Dec 2016 12:57:46 -0500 Subject: [PATCH] Updates for v0.7.0 --- cmd/dcrinstall/settings.go | 4 ++-- cmd/dcrinstall/version.go | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/cmd/dcrinstall/settings.go b/cmd/dcrinstall/settings.go index 86835ea..6f59f91 100644 --- a/cmd/dcrinstall/settings.go +++ b/cmd/dcrinstall/settings.go @@ -17,8 +17,8 @@ import ( // latestVersion and latestManifest must be updated every release. const ( - latestManifest = "manifest-v0.6.1.txt" - defaultURI = "https://github.com/decred/decred-binaries/releases/download/v0.6.1" + latestManifest = "manifest-v0.7.0.txt" + defaultURI = "https://github.com/decred/decred-binaries/releases/download/v0.7.0" netMain = "mainnet" netTest = "testnet" diff --git a/cmd/dcrinstall/version.go b/cmd/dcrinstall/version.go index dd66d19..ecc46f6 100644 --- a/cmd/dcrinstall/version.go +++ b/cmd/dcrinstall/version.go @@ -18,8 +18,8 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr // versioning 2.0.0 spec (http://semver.org/). const ( appMajor uint = 0 - appMinor uint = 6 - appPatch uint = 1 + appMinor uint = 7 + appPatch uint = 0 // appPreRelease MUST only contain characters from semanticAlphabet // per the semantic versioning spec.