Skip to content

Commit 3761cc4

Browse files
mvisonneauraphink
authored andcommitted
Bumped go version to 1.13
1 parent a651934 commit 3761cc4

File tree

4 files changed

+178
-139
lines changed

4 files changed

+178
-139
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
language: go
22
go:
3-
- "1.12"
3+
- "1.13"
44
go_import_path: github.com/camptocamp/terraboard
55
install:
66
- make vendor

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## Unreleased
2+
3+
- Server:
4+
5+
* Bumped go to 1.13
6+
17
## 0.16.0 (October 30, 2019)
28

39
- Server:

go.mod

+18-17
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,27 @@
11
module github.com/camptocamp/terraboard
22

3-
go 1.12
3+
go 1.13
44

55
require (
6-
github.com/aws/aws-sdk-go v1.22.0
6+
github.com/aws/aws-sdk-go v1.26.6
77
github.com/denisenkom/go-mssqldb v0.0.0-20190820223206-44cdfe8d8ba9 // indirect
8-
github.com/erikstmartin/go-testdb v0.0.0-20160219214506-8d10e4a1bae5 // indirect
9-
github.com/go-sql-driver/mysql v1.4.1 // indirect
10-
github.com/gofrs/uuid v3.2.0+incompatible // indirect
8+
github.com/hashicorp/hcl/v2 v2.2.0 // indirect
9+
github.com/hashicorp/hil v0.0.0-20190212132231-97b3a9cdfa93 // indirect
1110
github.com/hashicorp/terraform v0.12.18
11+
github.com/hashicorp/terraform-svchost v0.0.0-20191119180714-d2e4933b9136 // indirect
1212
github.com/jessevdk/go-flags v1.4.0
13-
github.com/jinzhu/gorm v0.0.0-20190102133208-9f1a7f535111
14-
github.com/jinzhu/inflection v0.0.0-20180308033659-04140366298a // indirect
15-
github.com/jinzhu/now v1.0.1 // indirect
16-
github.com/mattn/go-sqlite3 v1.11.0 // indirect
13+
github.com/jinzhu/gorm v1.9.11
14+
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect
15+
github.com/lib/pq v1.3.0 // indirect
16+
github.com/mitchellh/reflectwalk v1.0.1 // indirect
1717
github.com/pmezard/go-difflib v1.0.0
18-
github.com/sirupsen/logrus v1.2.0
19-
github.com/zclconf/go-cty v1.1.0 // indirect
20-
golang.org/x/crypto v0.0.0-20190820162420-60c769a6c586 // indirect
21-
golang.org/x/lint v0.0.0-20190930215403-16217165b5de // indirect
22-
golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7 // indirect
23-
golang.org/x/sys v0.0.0-20190826190057-c7b8b68b1456 // indirect
24-
golang.org/x/tools v0.0.0-20191025174333-e96d959c4788 // indirect
25-
gopkg.in/yaml.v2 v2.2.2
18+
github.com/sirupsen/logrus v1.4.2
19+
github.com/spf13/afero v1.2.2 // indirect
20+
github.com/zclconf/go-cty v1.2.0 // indirect
21+
golang.org/x/crypto v0.0.0-20191219195013-becbf705a915 // indirect
22+
golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f // indirect
23+
golang.org/x/net v0.0.0-20191209160850-c0dbc17a3553 // indirect
24+
golang.org/x/sys v0.0.0-20191220142924-d4481acd189f // indirect
25+
golang.org/x/tools v0.0.0-20191219230827-5e752206af05 // indirect
26+
gopkg.in/yaml.v2 v2.2.7
2627
)

0 commit comments

Comments
 (0)