Skip to content
This repository has been archived by the owner on Feb 16, 2023. It is now read-only.

Commit

Permalink
Merge pull request #376 from secrethub/release/v0.42.0
Browse files Browse the repository at this point in the history
Release v0.42.0
  • Loading branch information
SimonBarendse authored Apr 13, 2021
2 parents 59c7c09 + 02b9cbc commit 5060d8f
Show file tree
Hide file tree
Showing 124 changed files with 5,416 additions and 1,612 deletions.
17 changes: 17 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,24 @@ jobs:
- image: golangci/golangci-lint:v1.23.8-alpine
steps:
- checkout
- restore_cache:
keys:
- go-modules-{{ checksum "go.mod" }}
- run: go mod download
- save_cache:
key: go-modules-{{ checksum "go.mod" }}
paths:
- /go/pkg/mod
- restore_cache:
keys:
- golangci-lint-{{ .Branch }}
- golangci-lint-develop
- run: golangci-lint run
- save_cache:
key: golangci-lint-{{ .Branch }}
paths:
- ~/.cache/golangci-lint
- ~/.cache/go-build
verify-build:
parameters:
os:
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Ignore binary
/secrethub
2 changes: 2 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,5 @@ linters:
- unconvert
disable-all: true
exclude-use-defaults: false
run:
timeout: 5m
1 change: 1 addition & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ archives:
format: zip
files:
- LICENSE
- CREDITS.md

checksum:
name_template: "secrethub-{{ .Tag }}-checksums.txt"
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
<hr/>
<p align="center">
<sub><img src="https://1password.com/img/logo-v1.svg" alt="1Password" width="20" /></sub> <b>SecretHub has joined 1Password!</b> Find out more on the <a href="https://secrethub.io/blog/secrethub-joins-1password/">SecretHub blog</a>. 🎉
</p>
<hr/>

<p align="center">
<img src="https://secrethub.io/img/github-banner.png?v4" alt="SecretHub" width="400">
</p>
Expand Down
2 changes: 1 addition & 1 deletion cmd/secrethub/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
)

func main() {
err := secrethub.NewApp().Version(secrethub.Version, secrethub.Commit).Run(os.Args[1:])
err := secrethub.NewApp().Version(secrethub.Version, secrethub.Commit).Run()
if err != nil {
handleError(err)
}
Expand Down
12 changes: 6 additions & 6 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ go 1.14

require (
bitbucket.org/zombiezen/cardcpx v0.0.0-20150417151802-902f68ff43ef
cloud.google.com/go v0.57.0 // indirect
github.com/alecthomas/kingpin v1.3.8-0.20200323085623-b6657d9477a6
github.com/atotto/clipboard v0.1.2
github.com/aws/aws-sdk-go v1.25.49
github.com/docker/go-units v0.3.3
Expand All @@ -15,14 +13,16 @@ require (
github.com/mattn/go-isatty v0.0.7
github.com/mitchellh/go-homedir v1.1.0
github.com/op/go-logging v0.0.0-20160315200505-970db520ece7
github.com/pkg/errors v0.9.1 // indirect
github.com/secrethub/demo-app v0.1.0
github.com/secrethub/demo-app v0.5.1-0.20210105185858-ad55afc2cb87
github.com/secrethub/secrethub-go v0.31.0
github.com/spf13/cobra v1.0.0
github.com/spf13/pflag v1.0.5
github.com/zalando/go-keyring v0.0.0-20190208082241-fbe81aec3a07
golang.org/x/crypto v0.0.0-20191011191535-87dc89f01550
golang.org/x/sys v0.0.0-20200501052902-10377860bb8e
golang.org/x/sys v0.0.0-20201119102817-f84b799fce68
golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf
golang.org/x/text v0.3.2
google.golang.org/api v0.26.0
gopkg.in/yaml.v2 v2.2.2
gopkg.in/yaml.v2 v2.4.0
gotest.tools v2.2.0+incompatible
)
128 changes: 101 additions & 27 deletions go.sum

Large diffs are not rendered by default.

Loading

0 comments on commit 5060d8f

Please sign in to comment.