From 7ce1dc62fd9aac161e40e94431b0e453b81acf5c Mon Sep 17 00:00:00 2001 From: Walter Scheper Date: Tue, 17 Sep 2019 23:03:57 -0400 Subject: [PATCH] Release v0.1.2 --- .goreleaser.yml | 1 - .travis.yml | 2 +- CHANGELOG.md | 18 +++++++++++++++++- go.mod | 2 +- go.sum | 1 + tools.go | 1 + 6 files changed, 21 insertions(+), 4 deletions(-) diff --git a/.goreleaser.yml b/.goreleaser.yml index a71104d..143fd10 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -8,7 +8,6 @@ env: before: hooks: - go mod download - - go generate ./... builds: - binary: xkcdpwd main: ./cmd/xkcdpwd diff --git a/.travis.yml b/.travis.yml index 2cc231a..c303c0f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -29,4 +29,4 @@ deploy: script: curl -sL https://git.io/goreleaser | bash on: tags: true - condition: $TRAVIS_OS_NAME = linux AND $TRAVIS_GO_VERSION =~ ^1\.13 + condition: $TRAVIS_OS_NAME = linux && $TRAVIS_GO_VERSION =~ ^1\.13 diff --git a/CHANGELOG.md b/CHANGELOG.md index a02758c..ec0ea4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,19 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). +## [v0.1.3] - 2019-09-20 + +### Fixed + +- Fix travis deploy conidtional + +## [v0.1.2] - 2019-09-17 + +### Changed + +- Replace golint with golangci-lint +- Use goreleaser. + ## [v0.1.1] - 2018-09-15 ### Changed @@ -30,4 +43,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Control the character used to separate words in the passphrase. - Support config files for changing defaults for all command-line options. -[v0.1.1]: https://github.com/wfscheper/xkcdpwd/compare/v0.1.0...master +[v0.1.3]: https://github.com/wfscheper/xkcdpwd/compare/v0.1.2...v0.1.3 +[v0.1.2]: https://github.com/wfscheper/xkcdpwd/compare/v0.1.1...v0.1.2 +[v0.1.1]: https://github.com/wfscheper/xkcdpwd/compare/v0.1.0...v0.1.1 +[v0.1.1]: https://github.com/wfscheper/xkcdpwd/compare/4ec2e6...v0.1.0 diff --git a/go.mod b/go.mod index f84af68..9d4808e 100644 --- a/go.mod +++ b/go.mod @@ -9,6 +9,6 @@ require ( github.com/pborman/uuid v1.2.0 // indirect github.com/pelletier/go-toml v1.4.0 github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749 // indirect - github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd // indirect + github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd golang.org/x/text v0.3.2 ) diff --git a/go.sum b/go.sum index 4b5bb40..82394eb 100644 --- a/go.sum +++ b/go.sum @@ -156,6 +156,7 @@ github.com/spf13/afero v1.1.0 h1:bopulORc2JeYaxfHLvJa5NzxviA9PoWhpiiJkru7Ji4= github.com/spf13/afero v1.1.0/go.mod h1:j4pytiNVoe2o6bmDsKpLACNPDBIoEAkihy7loJ1B0CQ= github.com/spf13/cast v1.2.0 h1:HHl1DSRbEQN2i8tJmtS6ViPyHx35+p51amrdsiTCrkg= github.com/spf13/cast v1.2.0/go.mod h1:r2rcYCSwa1IExKTDiTfzaxqT2FNHs8hODu4LnUfgKEg= +github.com/spf13/cobra v0.0.2 h1:NfkwRbgViGoyjBKsLI0QMDcuMnhM+SBg3T0cGfpvKDE= github.com/spf13/cobra v0.0.2/go.mod h1:1l0Ry5zgKvJasoi3XT1TypsSe7PqH0Sj9dhYf7v3XqQ= github.com/spf13/jwalterweatherman v0.0.0-20180109140146-7c0cea34c8ec h1:2ZXvIUGghLpdTVHR1UfvfrzoVlZaE/yOWC5LueIHZig= github.com/spf13/jwalterweatherman v0.0.0-20180109140146-7c0cea34c8ec/go.mod h1:cQK4TGJAtQXfYWX+Ddv3mKDzgVb68N+wFjFa4jdeBTo= diff --git a/tools.go b/tools.go index b7455e6..362073c 100644 --- a/tools.go +++ b/tools.go @@ -6,4 +6,5 @@ import ( // tools _ "github.com/golangci/golangci-lint/pkg/lint" _ "github.com/mattn/goveralls" + _ "github.com/shurcooL/vfsgen" )