Skip to content

Commit

Permalink
prepare 1.5.1 (#168)
Browse files Browse the repository at this point in the history
  • Loading branch information
dajohi authored Jan 29, 2020
1 parent 24edffc commit e3aee97
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Check out source
uses: actions/checkout@v1
- name: Install Linters
run: "curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.21.0"
run: "curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b $(go env GOPATH)/bin v1.23.1"
- name: Build
env:
GO111MODULE: "on"
Expand Down
4 changes: 2 additions & 2 deletions cmd/dcrinstall/settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ import (

// latestVersion and latestManifest must be updated every release.
const (
latestManifest = "decred-v1.5.0-manifest.txt"
defaultURI = "https://github.com/decred/decred-binaries/releases/download/v1.5.0"
latestManifest = "decred-v1.5.1-manifest.txt"
defaultURI = "https://github.com/decred/decred-binaries/releases/download/v1.5.1"

netMain = "mainnet"
netTest = "testnet3"
Expand Down
2 changes: 1 addition & 1 deletion cmd/dcrinstall/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
const (
appMajor uint = 1
appMinor uint = 5
appPatch uint = 0
appPatch uint = 1

// appPreRelease MUST only contain characters from semanticAlphabet
// per the semantic versioning spec.
Expand Down

0 comments on commit e3aee97

Please sign in to comment.