Skip to content

Commit

Permalink
periodic gomod update and README bump (#19)
Browse files Browse the repository at this point in the history
* go get -u all

* go mod tidy

* readme

* tag version
  • Loading branch information
aegershman authored Jun 2, 2020
1 parent e651b4e commit 3c07d8e
Show file tree
Hide file tree
Showing 4 changed files with 86 additions and 26 deletions.
17 changes: 14 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,26 @@ If you want to try it out, install it directly from [the github releases tab as

```sh
# osx 64bit
cf install-plugin -f https://github.com/aegershman/cf-reverse-service-lookup-plugin/releases/download/0.5.3/cf-reverse-service-lookup-plugin-darwin
cf install-plugin -f https://github.com/aegershman/cf-reverse-service-lookup-plugin/releases/download/0.5.4/cf-reverse-service-lookup-plugin-darwin

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

# windows 64bit (32bit also available)
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
cf install-plugin -f https://github.com/aegershman/cf-reverse-service-lookup-plugin/releases/download/0.5.4/cf-reverse-service-lookup-plugin-windows-amd64.exe
```

## updating and releasing

- `go get -u all`
- `go mod tidy`
- update the plugin version in `main.go`
- update the `README` install-plugin section to reference the new upcoming release version
- `git tag 0.5.4` -- or whatever version, of course
- `git push origin --tags`
- `export GITHUB_TOKEN="xyzabc"`
- `goreleaser release`

## feedback welcome

Ideas, use-cases, opinions on architecture, doc, etc. all welcome
2 changes: 1 addition & 1 deletion cmd/rsl/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ func (cmd *reverseServiceLookupCmd) GetMetadata() plugin.PluginMetadata {
Version: plugin.VersionType{
Major: 0,
Minor: 5,
Build: 3,
Build: 4,
},
Commands: []plugin.Command{
{
Expand Down
15 changes: 7 additions & 8 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -7,25 +7,24 @@ require (
github.com/Masterminds/semver v1.5.0 // indirect
github.com/cloudfoundry-community/go-cfclient v0.0.0-20200413172050-18981bf12b4b
github.com/cloudfoundry/cli v6.51.0+incompatible
github.com/fsnotify/fsnotify v1.4.9 // indirect
github.com/golang/protobuf v1.4.1 // indirect
github.com/google/go-cmp v0.4.1 // indirect
github.com/gopherjs/gopherjs v0.0.0-20200217142428-fce0ec30dd00 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mattn/go-runewidth v0.0.9 // indirect
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/olekukonko/tablewriter v0.0.4
github.com/onsi/ginkgo v1.12.0 // indirect
github.com/onsi/gomega v1.9.0 // indirect
github.com/onsi/ginkgo v1.12.3 // indirect
github.com/oxtoacart/bpool v0.0.0-20190530202638-03653db5a59c // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/sirupsen/logrus v1.6.0
github.com/smartystreets/assertions v1.1.0 // indirect
github.com/smartystreets/goconvey v1.6.4 // indirect
github.com/stretchr/testify v1.5.1 // indirect
golang.org/x/net v0.0.0-20200506145744-7e3656a0809f // indirect
github.com/stretchr/testify v1.6.0 // indirect
golang.org/x/net v0.0.0-20200528225125-3c3fba18258b // indirect
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect
golang.org/x/sys v0.0.0-20200501145240-bc7a7d42d5c3 // indirect
golang.org/x/sys v0.0.0-20200523222454-059865788121 // indirect
google.golang.org/appengine v1.6.6 // indirect
google.golang.org/protobuf v1.24.0 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/yaml.v2 v2.2.8 // indirect
gopkg.in/yaml.v3 v3.0.0-20200601152816-913338de1bd2 // indirect
)
Loading

0 comments on commit 3c07d8e

Please sign in to comment.