-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update to Go 1.13 and latest dependency versions (#87)
Go 1.13 has been released (1) over a month ago that comes with some great features and a lot stability, performance and security improvements and bug fixes. The new `os.UserConfigDir()` function (2) is a great addition for the handling for snowsaw's configuration files that will be implemented late on. See the Go 1.13 official release notes (3) for more details. Since there are no breaking changes snowsaw now requires Go 1.13 as minimum version. With the update to Go 1.13.x all outdated dependencies have also been updated to their latest versions to prevent possible module ncompatibilities as well as including the latest improvements and bug fixes. References: (1) https://blog.golang.org/go1.13 (2) https://golang.org/pkg/os/#UserConfigDir (3) https://golang.org/doc/go1.13 Epic GH-33 Resolves GH-86
- Loading branch information
1 parent
278d08e
commit 7fb34ca
Showing
3 changed files
with
28 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,17 @@ | ||
module github.com/arcticicestudio/snowsaw | ||
|
||
go 1.12 | ||
go 1.13 | ||
|
||
require ( | ||
github.com/fatih/color v1.7.0 | ||
github.com/imdario/mergo v0.3.7 | ||
github.com/magefile/mage v1.8.0 | ||
github.com/mattn/go-colorable v0.1.2 // indirect | ||
github.com/imdario/mergo v0.3.8 | ||
github.com/magefile/mage v1.9.0 | ||
github.com/mattn/go-colorable v0.1.4 // indirect | ||
github.com/mattn/go-isatty v0.0.10 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 | ||
github.com/mitchellh/mapstructure v1.1.2 | ||
github.com/spf13/cobra v0.0.5 | ||
gopkg.in/yaml.v3 v3.0.0-20190709130402-674ba3eaed22 | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
golang.org/x/sys v0.0.0-20191010194322-b09406accb47 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20191010095647-fc94e3f71652 | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters