Skip to content

Commit

Permalink
Prepare v0.0.5 release
Browse files Browse the repository at this point in the history
Signed-off-by: Mario Trangoni <mjtrangoni@gmail.com>
  • Loading branch information
mjtrangoni committed Mar 8, 2020
1 parent a5a4dff commit fd0399a
Show file tree
Hide file tree
Showing 4 changed files with 107 additions and 52 deletions.
43 changes: 43 additions & 0 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
project_name: flexlm_exporter

before:
hooks:
- go mod tidy

builds:
- binary: "{{ .ProjectName }}"
id: "{{ .ProjectName }}"
hooks:
post: make tarball
goos:
- linux
- windows
goarch:
- amd64
- 386

checksum:
name_template: '{{ .ProjectName }}_checksums.txt'
changelog:
sort: asc
filters:
exclude:
- '^docs:'
- '^test:'
- Merge pull request
- Merge branch

archives:
- name_template: '{{ .ProjectName }}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
replacements:
darwin: Darwin
linux: Linux
windows: Windows
386: i386
amd64: x86_64
format_overrides:
- goos: windows
format: zip

snapshot:
name_template: "{{ .Tag }}-snapshot"
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## v0.0.5 / unreleased

* [ENHANCEMENT] Handle case for switched columns on expirations output.
* [ENHANCEMENT] Build Docker image on CentOS8.
* [ENHANCEMENT] Use goroutines for each license and add features aggregate
expiration. Thanks @treydock.
* [ENHANCEMENT] Switch to go modules and yaml.v3. Thanks @knweiss.
* [ENHANCEMENT] First crossbuild support.

## v0.0.4 / 2019-02-27

* [ENHANCEMENT] Changed Regex to include FQDNs.
Expand Down
17 changes: 12 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,26 @@ module github.com/mjtrangoni/flexlm_exporter
go 1.13

require (
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect
github.com/bombsimon/wsl/v2 v2.2.0 // indirect
github.com/fatih/color v1.9.0 // indirect
github.com/gogo/protobuf v1.3.1 // indirect
github.com/golang/protobuf v1.3.4 // indirect
github.com/golangci/gocyclo v0.0.0-20180528144436-0a533e8fa43d // indirect
github.com/golangci/golangci-lint v1.23.8 // indirect
github.com/golangci/revgrep v0.0.0-20180812185044-276a5c0a1039 // indirect
github.com/google/go-github/v25 v25.1.3 // indirect
github.com/gostaticanalysis/analysisutil v0.0.3 // indirect
github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af // indirect
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
github.com/kr/pretty v0.2.0 // indirect
github.com/mattn/go-colorable v0.1.6 // indirect
github.com/mattn/go-isatty v0.0.12 // indirect
github.com/pelletier/go-toml v1.6.0 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/prometheus/client_golang v1.3.0
github.com/prometheus/common v0.7.0
github.com/prometheus/client_golang v1.5.0
github.com/prometheus/common v0.9.1
github.com/prometheus/procfs v0.0.10 // indirect
github.com/prometheus/promu v0.5.0 // indirect
github.com/securego/gosec v0.0.0-20200302134848-c998389da2ac // indirect
github.com/spf13/afero v1.2.2 // indirect
github.com/spf13/cast v1.3.1 // indirect
Expand All @@ -26,12 +31,14 @@ require (
github.com/spf13/viper v1.6.2 // indirect
github.com/stretchr/testify v1.5.1 // indirect
github.com/tommy-muehle/go-mnd v1.3.0 // indirect
golang.org/x/mod v0.2.0 // indirect
golang.org/x/net v0.0.0-20200301022130-244492dfa37a // indirect
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect
golang.org/x/sys v0.0.0-20200302150141-5c8b2ff67527 // indirect
golang.org/x/tools v0.0.0-20200308013534-11ec41452d41 // indirect
golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543 // indirect
google.golang.org/appengine v1.6.5 // indirect
gopkg.in/alecthomas/kingpin.v2 v2.2.6
gopkg.in/ini.v1 v1.54.0 // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
gopkg.in/yaml.v3 v3.0.0-20191120175047-4206685974f2
honnef.co/go/tools v0.0.1-2020.1.3 // indirect
mvdan.cc/unparam v0.0.0-20191111180625-960b1ec0f2c2 // indirect
Expand Down
Loading

0 comments on commit fd0399a

Please sign in to comment.