Skip to content

Commit

Permalink
Release v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
wfscheper committed Sep 21, 2019
1 parent 99f259c commit 7ce1dc6
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 4 deletions.
1 change: 0 additions & 1 deletion .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ env:
before:
hooks:
- go mod download
- go generate ./...
builds:
- binary: xkcdpwd
main: ./cmd/xkcdpwd
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -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
)
1 change: 1 addition & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -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=
Expand Down
1 change: 1 addition & 0 deletions tools.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,5 @@ import (
// tools
_ "github.com/golangci/golangci-lint/pkg/lint"
_ "github.com/mattn/goveralls"
_ "github.com/shurcooL/vfsgen"
)

0 comments on commit 7ce1dc6

Please sign in to comment.