Skip to content

Commit

Permalink
bump version, bump releasing (#119)
Browse files Browse the repository at this point in the history
  • Loading branch information
aegershman authored Jun 2, 2020
1 parent 0045525 commit de7542f
Show file tree
Hide file tree
Showing 5 changed files with 82 additions and 32 deletions.
13 changes: 7 additions & 6 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
---
version: 2
updates:
- package-ecosystem: gomod
directory: "/"
schedule:
interval: daily
time: '11:00'
open-pull-requests-limit: 10
- package-ecosystem: gomod
directory: "/"
schedule:
interval: daily
time: "11:00"
open-pull-requests-limit: 10
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,13 +241,13 @@ 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-report-usage-plugin/releases/download/3.3.0/cf-report-usage-plugin-darwin
cf install-plugin -f https://github.com/aegershman/cf-report-usage-plugin/releases/download/3.3.1/cf-report-usage-plugin-darwin

# linux 64bit (32bit and ARM6 also available)
cf install-plugin -f https://github.com/aegershman/cf-report-usage-plugin/releases/download/3.3.0/cf-report-usage-plugin-linux-amd64
cf install-plugin -f https://github.com/aegershman/cf-report-usage-plugin/releases/download/3.3.1/cf-report-usage-plugin-linux-amd64

# windows 64bit (32bit also available)
cf install-plugin -f https://github.com/aegershman/cf-report-usage-plugin/releases/download/3.3.0/cf-report-usage-plugin-windows-amd64.exe
cf install-plugin -f https://github.com/aegershman/cf-report-usage-plugin/releases/download/3.3.1/cf-report-usage-plugin-windows-amd64.exe
```

## backwards compatibility
Expand Down
2 changes: 1 addition & 1 deletion cmd/reportusage/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ func (cmd *reportUsageCmd) GetMetadata() plugin.PluginMetadata {
Version: plugin.VersionType{
Major: 3,
Minor: 3,
Build: 0,
Build: 1,
},
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 de7542f

Please sign in to comment.