From 091b035921f58f33dc0a3f39f5edd2ea6ca13cdb Mon Sep 17 00:00:00 2001 From: Denis Makogon Date: Fri, 18 Aug 2017 21:35:59 +0300 Subject: [PATCH] Updating CLI dependency: functions_go 0.1.37 --- cli/glide.lock | 9 ++++++--- cli/vendor/github.com/funcy/functions_go/VERSION | 6 +++++- .../funcy/functions_go/client/functions_client.go | 14 -------------- 3 files changed, 11 insertions(+), 18 deletions(-) diff --git a/cli/glide.lock b/cli/glide.lock index b54acedcd..2ffad3930 100644 --- a/cli/glide.lock +++ b/cli/glide.lock @@ -1,5 +1,10 @@ +<<<<<<< 60da1c5f65dda96b9aeaeb2afbc513bf134a1990 hash: da81ae46b9ef53596e8daaaa1aeb662af8704d77ae34ce2d33c7da87e6bd1ef5 updated: 2017-08-09T23:25:49.919468872+03:00 +======= +hash: fc16e358787292cb0b0d7f71adf4f0685b5994ca1c81788fdd056de21ebe7e55 +updated: 2017-08-18T21:34:47.686061147+03:00 +>>>>>>> Updating CLI dependency: functions_go 0.1.37 imports: - name: github.com/asaskevich/govalidator version: aa5cce4a76edb1a5acecab1870c17abbffb5419e @@ -50,15 +55,13 @@ imports: - name: github.com/docker/go-units version: 0dadbb0345b35ec7ef35e228dabb8de89a65bf52 - name: github.com/funcy/functions_go - version: fc7e7ca2fbc8bef236300b7b9f1075410a62447f + version: e046aa4ca1f1028a04fc51395297ff07515cb0b6 subpackages: - client - client/apps - client/call - client/operations - client/routes - - client/tasks - - client/version - models - name: github.com/giantswarm/semver-bump version: 88e6c9f2fe390c48839eaba32490fd09cb3b581c diff --git a/cli/vendor/github.com/funcy/functions_go/VERSION b/cli/vendor/github.com/funcy/functions_go/VERSION index d3662a8dd..81522d9ab 100644 --- a/cli/vendor/github.com/funcy/functions_go/VERSION +++ b/cli/vendor/github.com/funcy/functions_go/VERSION @@ -1 +1,5 @@ -0.1.36 \ No newline at end of file +<<<<<<< 60da1c5f65dda96b9aeaeb2afbc513bf134a1990 +0.1.36 +======= +0.1.37 +>>>>>>> Updating CLI dependency: functions_go 0.1.37 diff --git a/cli/vendor/github.com/funcy/functions_go/client/functions_client.go b/cli/vendor/github.com/funcy/functions_go/client/functions_client.go index 7604c416e..ac2259094 100644 --- a/cli/vendor/github.com/funcy/functions_go/client/functions_client.go +++ b/cli/vendor/github.com/funcy/functions_go/client/functions_client.go @@ -15,8 +15,6 @@ import ( "github.com/funcy/functions_go/client/call" "github.com/funcy/functions_go/client/operations" "github.com/funcy/functions_go/client/routes" - "github.com/funcy/functions_go/client/tasks" - "github.com/funcy/functions_go/client/version" ) // Default functions HTTP client. @@ -68,10 +66,6 @@ func New(transport runtime.ClientTransport, formats strfmt.Registry) *Functions cli.Routes = routes.New(transport, formats) - cli.Tasks = tasks.New(transport, formats) - - cli.Version = version.New(transport, formats) - return cli } @@ -124,10 +118,6 @@ type Functions struct { Routes *routes.Client - Tasks *tasks.Client - - Version *version.Client - Transport runtime.ClientTransport } @@ -143,8 +133,4 @@ func (c *Functions) SetTransport(transport runtime.ClientTransport) { c.Routes.SetTransport(transport) - c.Tasks.SetTransport(transport) - - c.Version.SetTransport(transport) - }