Skip to content
This repository was archived by the owner on Aug 28, 2025. It is now read-only.

Commit 7291d0e

Browse files
authored
Tidy dependencies and yaml files (#16)
* indentation style, spacing * go mod updates * update dependencies
1 parent c92becb commit 7291d0e

7 files changed

Lines changed: 115 additions & 39 deletions

File tree

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
root = true
22

33
[*]
4+
charset = utf-8
45
end_of_line = lf
56
indent_size = 2
67
indent_style = tab
78
insert_final_newline = true
89
trim_trailing_whitespace = true
9-
charset = utf-8
1010

1111
[*.{md,yml}]
1212
indent_style = space

.goreleaser.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
# This is an example goreleaser.yaml file with some sane defaults.
2-
# Make sure to check the documentation at http://goreleaser.com
31
---
42
before:
53
hooks:

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,13 +68,13 @@ If you want to try it out, install it directly from [the github releases tab as
6868

6969
```sh
7070
# osx 64bit
71-
cf install-plugin -f https://github.com/aegershman/cf-reverse-service-lookup-plugin/releases/download/0.5.2/cf-reverse-service-lookup-plugin-darwin
71+
cf install-plugin -f https://github.com/aegershman/cf-reverse-service-lookup-plugin/releases/download/0.5.3/cf-reverse-service-lookup-plugin-darwin
7272

7373
# linux 64bit (32bit and ARM6 also available)
74-
cf install-plugin -f https://github.com/aegershman/cf-reverse-service-lookup-plugin/releases/download/0.5.2/cf-reverse-service-lookup-plugin-amd64
74+
cf install-plugin -f https://github.com/aegershman/cf-reverse-service-lookup-plugin/releases/download/0.5.3/cf-reverse-service-lookup-plugin-amd64
7575

7676
# windows 64bit (32bit also available)
77-
cf install-plugin -f https://github.com/aegershman/cf-reverse-service-lookup-plugin/releases/download/0.5.2/cf-reverse-service-lookup-plugin-windows-amd64.exe
77+
cf install-plugin -f https://github.com/aegershman/cf-reverse-service-lookup-plugin/releases/download/0.5.3/cf-reverse-service-lookup-plugin-windows-amd64.exe
7878
```
7979

8080
## feedback welcome

Taskfile.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
---
22
version: "2"
33

4-
silent: true
5-
64
tasks:
75
build:
86
cmds:

cmd/rsl/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ func (cmd *reverseServiceLookupCmd) GetMetadata() plugin.PluginMetadata {
9696
Version: plugin.VersionType{
9797
Major: 0,
9898
Minor: 5,
99-
Build: 2,
99+
Build: 3,
100100
},
101101
Commands: []plugin.Command{
102102
{

go.mod

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,29 @@ module github.com/aegershman/cf-reverse-service-lookup-plugin
33
go 1.13
44

55
require (
6-
code.cloudfoundry.org/cli v6.47.2+incompatible
7-
github.com/cloudfoundry-community/go-cfclient v0.0.0-20190808214049-35bcce23fc5f
8-
github.com/cloudfoundry/cli v6.47.2+incompatible
9-
github.com/olekukonko/tablewriter v0.0.3
10-
github.com/onsi/ginkgo v1.10.3 // indirect
11-
github.com/onsi/gomega v1.7.1 // indirect
12-
github.com/sirupsen/logrus v1.4.2
13-
golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3 // indirect
14-
golang.org/x/sys v0.0.0-20191008105621-543471e840be // indirect
6+
code.cloudfoundry.org/cli v6.51.0+incompatible
7+
github.com/Masterminds/semver v1.5.0 // indirect
8+
github.com/cloudfoundry-community/go-cfclient v0.0.0-20200413172050-18981bf12b4b
9+
github.com/cloudfoundry/cli v6.51.0+incompatible
10+
github.com/fsnotify/fsnotify v1.4.9 // indirect
11+
github.com/golang/protobuf v1.4.1 // indirect
12+
github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect
13+
github.com/kr/text v0.2.0 // indirect
14+
github.com/mattn/go-runewidth v0.0.9 // indirect
15+
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
16+
github.com/olekukonko/tablewriter v0.0.4
17+
github.com/onsi/ginkgo v1.12.0 // indirect
18+
github.com/onsi/gomega v1.9.0 // indirect
19+
github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c // indirect
20+
github.com/pkg/errors v0.9.1 // indirect
21+
github.com/sirupsen/logrus v1.6.0
22+
github.com/smartystreets/assertions v1.1.0 // indirect
23+
github.com/smartystreets/goconvey v1.6.4 // indirect
24+
github.com/stretchr/testify v1.5.1 // indirect
25+
golang.org/x/net v0.0.0-20200506145744-7e3656a0809f // indirect
26+
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect
27+
golang.org/x/sys v0.0.0-20200501145240-bc7a7d42d5c3 // indirect
28+
google.golang.org/appengine v1.6.6 // indirect
29+
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
30+
gopkg.in/yaml.v2 v2.2.8 // indirect
1531
)

0 commit comments

Comments
 (0)