Skip to content

Commit

Permalink
Bump for v1.2.0-rc1 (#138)
Browse files Browse the repository at this point in the history
  • Loading branch information
dajohi authored Apr 6, 2018
1 parent 20b7a77 commit 2317eaa
Show file tree
Hide file tree
Showing 6 changed files with 109 additions and 59 deletions.
11 changes: 9 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: go
go:
- 1.8.x
- 1.9.x
- 1.10.x
sudo: false
install:
- go get -v github.com/golang/dep/cmd/dep
Expand All @@ -11,4 +11,11 @@ install:
- gometalinter --install
script:
- export PATH=$PATH:$HOME/gopath/bin
- ./goclean.sh
- gometalinter --vendor --disable-all --deadline=10m
--enable=gofmt
--enable=golint
--enable=vet
--enable=gosimple
--enable=unconvert
--enable=ineffassign
- env GORACE="halt_on_error=1" go test -race ./...
110 changes: 94 additions & 16 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

[[constraint]]
name = "github.com/decred/dcrd"
revision = "008e80bf8668544de4200a08927e95e5926439a0"
version = "1.2.0-rc1"

[[constraint]]
name = "github.com/decred/dcrwallet"
revision = "0027db2f7a9fcce036af661938ff5a35727547a9"
version = "1.2.0-rc1"

[[constraint]]
name = "github.com/docker/docker"
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 = "manifest-v1.1.2.txt"
defaultURI = "https://github.com/decred/decred-binaries/releases/download/v1.1.2"
latestManifest = "manifest-v1.2.0-rc1.txt"
defaultURI = "https://github.com/decred/decred-binaries/releases/download/v1.2.0-rc1"

netMain = "mainnet"
netTest = "testnet"
Expand Down
4 changes: 2 additions & 2 deletions cmd/dcrinstall/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const semanticAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqr
// versioning 2.0.0 spec (http://semver.org/).
const (
appMajor uint = 1
appMinor uint = 1
appPatch uint = 2
appMinor uint = 2
appPatch uint = 0

// appPreRelease MUST only contain characters from semanticAlphabet
// per the semantic versioning spec.
Expand Down
35 changes: 0 additions & 35 deletions goclean.sh

This file was deleted.

0 comments on commit 2317eaa

Please sign in to comment.