-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Publish 2.1.0 with go 1.15, updated dependencies and up-to-date alpin…
…e base image
- Loading branch information
Steffen Ritter
committed
Jan 6, 2021
1 parent
863fec0
commit 2ff62da
Showing
4 changed files
with
395 additions
and
12 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,4 +1,4 @@ | ||
FROM golang:1.14 as build | ||
FROM golang:1.15 as build | ||
ENV GOOS=linux | ||
ENV CGO_ENABLED=0 | ||
ENV GOARCH=amd64 | ||
|
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,5 +1,5 @@ | ||
SOURCES=vistecture.go | ||
VERSION=2.0.10 | ||
VERSION=2.1.0 | ||
|
||
.PHONY: all templates darwin linux windows default | ||
|
||
|
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,16 +1,34 @@ | ||
module github.com/AOEpeople/vistecture/v2 | ||
|
||
go 1.13 | ||
go 1.15 | ||
|
||
require ( | ||
github.com/gobuffalo/events v1.2.0 // indirect | ||
github.com/gobuffalo/meta v0.0.0-20190126124307-c8fb6f4eb5a9 // indirect | ||
github.com/gobuffalo/packr/v2 v2.0.0-rc.15 | ||
github.com/gorilla/mux v1.7.0 | ||
github.com/russross/blackfriday v0.0.0-20180804101149-46c73eb196ba | ||
golang.org/x/crypto v0.0.0-20190123085648-057139ce5d2b // indirect | ||
golang.org/x/sys v0.0.0-20190124100055-b90733256f2e // indirect | ||
golang.org/x/tools v0.0.0-20190125232054-d66bd3c5d5a6 // indirect | ||
github.com/gobuffalo/buffalo v0.13.0 // indirect | ||
github.com/gobuffalo/buffalo-plugins v1.15.0 // indirect | ||
github.com/gobuffalo/events v1.4.1 // indirect | ||
github.com/gobuffalo/flect v0.2.2 // indirect | ||
github.com/gobuffalo/genny v0.6.0 // indirect | ||
github.com/gobuffalo/mapi v1.2.1 // indirect | ||
github.com/gobuffalo/meta v0.3.0 // indirect | ||
github.com/gobuffalo/packr v1.21.0 // indirect | ||
github.com/gobuffalo/packr/v2 v2.8.1 | ||
github.com/gobuffalo/syncx v0.1.0 // indirect | ||
github.com/gorilla/mux v1.8.0 | ||
github.com/karrick/godirwalk v1.16.1 // indirect | ||
github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect | ||
github.com/kr/pty v1.1.3 // indirect | ||
github.com/markbates/going v1.0.3 // indirect | ||
github.com/markbates/inflect v1.0.4 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/rogpeppe/go-internal v1.6.2 // indirect | ||
github.com/russross/blackfriday v1.6.0 | ||
github.com/sirupsen/logrus v1.7.0 // indirect | ||
github.com/spf13/afero v1.2.0 // indirect | ||
github.com/spf13/cobra v1.1.1 // indirect | ||
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad // indirect | ||
golang.org/x/sys v0.0.0-20210105210732-16f7687f5001 // indirect | ||
golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf // indirect | ||
golang.org/x/tools v0.0.0-20210105210202-9ed45478a130 // indirect | ||
gopkg.in/urfave/cli.v1 v1.20.0 | ||
gopkg.in/yaml.v2 v2.2.2 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
) |
Oops, something went wrong.