Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Go to 1.16 #499

Merged
merged 1 commit into from
Mar 11, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
pull_request:

env:
GO_VERSION: 1.15
GO_VERSION: 1.16
PYTHON_VERSION: '3.x'

jobs:
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.15'
go-version: '${{ env.GO_VERSION }}'

- name: Setup Mage
run: |
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ __pycache__
/build.luarocks
/venv
/cartridge
go.sum
dist
completion/
*_gen.go
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
* And other cosmetic fixes
- Allowed to use any base docker image for the ``cartridge pack`` command.
- Executable with any name (not only ``tarantool``) can run processes.
- Updated Go to version 1.16

## [2.6.0] - 2021-01-27

Expand Down Expand Up @@ -97,7 +98,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

### Changed

- Updated Go to version 1.5
- Updated Go to version 1.15
- Updated `cartridge` to 2.3.0 in default application template

## [2.2.1] - 2020-08-19
Expand Down
13 changes: 8 additions & 5 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,22 +1,25 @@
module github.com/tarantool/cartridge-cli

go 1.15
go 1.16

require (
docker.io/go-docker v1.0.0
github.com/FZambia/tarantool v0.2.1
github.com/Microsoft/go-winio v0.4.16 // indirect
github.com/StackExchange/wmi v0.0.0-20210224194228-fe8f1750fd46 // indirect
github.com/adam-hanna/arrayOperations v0.2.6
github.com/apex/log v1.4.0
github.com/avast/retry-go v3.0.0+incompatible
github.com/briandowns/spinner v1.11.1
github.com/c-bata/go-prompt v0.2.5
github.com/dave/jennifer v1.4.1
github.com/docker/distribution v2.7.1+incompatible // indirect
github.com/docker/docker v1.13.1
github.com/docker/docker/internal/testutil v0.0.0-00010101000000-000000000000 // indirect
github.com/docker/go-connections v0.4.0 // indirect
github.com/docker/go-units v0.4.0 // indirect
github.com/fatih/color v1.7.0
github.com/fatih/structs v1.1.0
github.com/go-ole/go-ole v1.2.5 // indirect
github.com/gogo/protobuf v1.3.1 // indirect
github.com/hashicorp/go-version v1.2.0
github.com/hpcloud/tail v1.0.0
Expand All @@ -29,14 +32,14 @@ require (
github.com/pmezard/go-difflib v1.0.0
github.com/shirou/gopsutil v2.20.5+incompatible
github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749
github.com/shurcooL/vfsgen v0.0.0-20200824052919-0d455de96546
github.com/shurcooL/vfsgen v0.0.0-20200824052919-0d455de96546 // indirect
github.com/spf13/cobra v1.0.1-0.20200815144417-81e0311edd0b
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.6.1
github.com/vmihailenco/msgpack/v5 v5.1.0
github.com/yuin/gopher-lua v0.0.0-20191220021717-ab39c6098bdb
golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect
golang.org/x/sys v0.0.0-20200918174421-af09f7315aff
golang.org/x/tools v0.0.0-20200609124132-5359b67ffbdf // indirect
gopkg.in/yaml.v2 v2.3.0
)

replace github.com/docker/docker/internal/testutil => gotest.tools/v3 v3.0.0
Loading