Skip to content

Commit

Permalink
switch to Go modules, update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
bgetsug committed Apr 10, 2020
1 parent b8d7908 commit fe277f6
Show file tree
Hide file tree
Showing 5 changed files with 42 additions and 185 deletions.
32 changes: 17 additions & 15 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
project_name: tt
brew:
github:
owner: bgetsug
name: homebrew-tap
commit_author:
name: goreleaserbot
email:
folder: Formula
brews:
-
github:
owner: bgetsug
name: homebrew-tap
commit_author:
name: goreleaserbot
email:
folder: Formula

builds:
-
Expand All @@ -20,13 +21,14 @@ builds:

ldflags: -s -w -X main.version={{.Version}}

archive:
replacements:
darwin: macOS
linux: Linux
windows: Windows
386: i386
amd64: x86_64
archives:
-
replacements:
darwin: macOS
linux: Linux
windows: Windows
386: i386
amd64: x86_64

checksum:
name_template: 'checksums.txt'
Expand Down
126 changes: 0 additions & 126 deletions Gopkg.lock

This file was deleted.

43 changes: 0 additions & 43 deletions Gopkg.toml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# tt 🕰

**Tiny turbo time tool, totally timely.**
**Tiny turbo time tool**

## Features

Expand Down
24 changes: 24 additions & 0 deletions go.mod
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
module github.com/bgetsug/tt

go 1.14

require (
github.com/BurntSushi/toml v0.3.1 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/fsnotify/fsnotify v1.4.7 // indirect
github.com/hashicorp/hcl v0.0.0-20171017181929-23c074d0eceb // indirect
github.com/inconshreveable/mousetrap v1.0.0 // indirect
github.com/jinzhu/now v1.1.1
github.com/magiconair/properties v1.7.6 // indirect
github.com/mitchellh/mapstructure v0.0.0-20180220230111-00c29f56e238 // indirect
github.com/pelletier/go-toml v1.1.0 // indirect
github.com/spf13/afero v1.0.2 // indirect
github.com/spf13/cast v1.2.0 // indirect
github.com/spf13/cobra v0.0.1
github.com/spf13/jwalterweatherman v0.0.0-20180109140146-7c0cea34c8ec // indirect
github.com/spf13/pflag v1.0.0 // indirect
github.com/spf13/viper v1.0.0
github.com/stretchr/testify v1.5.1 // indirect
golang.org/x/sys v0.0.0-20180302081741-dd2ff4accc09 // indirect
golang.org/x/text v0.3.0 // indirect
)

0 comments on commit fe277f6

Please sign in to comment.