From f516d1e89f84a8bc6d5638402d9f5ee3fc3b2223 Mon Sep 17 00:00:00 2001 From: "John C. Vernaleo" Date: Thu, 27 Apr 2017 18:02:20 -0400 Subject: [PATCH] Bump for v1.0.1 --- cmd/dcrinstall/settings.go | 4 ++-- cmd/dcrinstall/version.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/cmd/dcrinstall/settings.go b/cmd/dcrinstall/settings.go index a892f97..97c5a35 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-v1.0.0.txt" - defaultURI = "https://github.com/decred/decred-binaries/releases/download/v1.0.0" + latestManifest = "manifest-v1.0.1.txt" + defaultURI = "https://github.com/decred/decred-binaries/releases/download/v1.0.1" netMain = "mainnet" netTest = "testnet" diff --git a/cmd/dcrinstall/version.go b/cmd/dcrinstall/version.go index dd02260..7ca75a8 100644 --- a/cmd/dcrinstall/version.go +++ b/cmd/dcrinstall/version.go @@ -19,7 +19,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr const ( appMajor uint = 1 appMinor uint = 0 - appPatch uint = 0 + appPatch uint = 1 // appPreRelease MUST only contain characters from semanticAlphabet // per the semantic versioning spec.