Skip to content

Commit

Permalink
Merge pull request #40 from dokku/master
Browse files Browse the repository at this point in the history
Release 0.5.0
  • Loading branch information
josegonzalez authored May 7, 2020
2 parents 887e14c + 00e33c1 commit 14185cc
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 6 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Change Log
All notable changes to this project will be documented in this file.

## [0.5.0] - 2020-05-07

### Changed
- @josegonzalez Upgraded go-basher (includes bash upgrade)

## [0.4.0] - 2020-05-06
### Added
- @josegonzalez Release packages for focal #37
Expand Down Expand Up @@ -66,7 +71,8 @@ All notable changes to this project will be documented in this file.
### Changed
- @progrium rename to plugn

[unreleased]: https://github.com/dokku/plugn/compare/v0.4.0...HEAD
[unreleased]: https://github.com/dokku/plugn/compare/v0.5.0...HEAD
[0.5.0]: https://github.com/dokku/plugn/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/dokku/plugn/compare/v0.3.2...v0.4.0
[0.3.2]: https://github.com/dokku/plugn/compare/v0.3.1...v0.3.2
[0.3.1]: https://github.com/dokku/plugn/compare/v0.3.0...v0.3.1
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ MAINTAINER_NAME = Jose Diaz-Gonzalez
REPOSITORY = plugn
HARDWARE = $(shell uname -m)
SYSTEM_NAME = $(shell uname -s | tr '[:upper:]' '[:lower:]')
BASE_VERSION ?= 0.4.0
BASE_VERSION ?= 0.5.0
IMAGE_NAME ?= $(MAINTAINER)/$(REPOSITORY)
PACKAGECLOUD_REPOSITORY ?= dokku/dokku-betafish

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Hook system that lets users extend your application with plugins

## Installation
```
$ wget -qO /tmp/plugn_latest.tgz https://github.com/dokku/plugn/releases/download/v0.4.0/plugn_0.4.0_linux_x86_64.tgz
$ wget -qO /tmp/plugn_latest.tgz https://github.com/dokku/plugn/releases/download/v0.5.0/plugn_0.5.0_linux_x86_64.tgz
$ tar xzf /tmp/plugn_latest.tgz -C /usr/local/bin
```

Expand Down
7 changes: 4 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,13 @@ module plugn
go 1.12

require (
github.com/BurntSushi/toml v0.0.0-20160717150709-99064174e013
github.com/BurntSushi/toml v0.3.1
github.com/dokku/duplex v0.0.0-20160916172127-5bc6cb8042f7
github.com/google/uuid v1.1.1 // indirect
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0
github.com/mitchellh/go-homedir v1.1.0
github.com/pborman/uuid v0.0.0-20160824210600-b984ec7fa9ff
github.com/pborman/uuid v1.2.0
github.com/progrium/crypto v0.0.0-20141231035031-e04455474e32
github.com/progrium/go-basher v0.0.0-20200318002843-c5a2b04f6887
github.com/progrium/go-basher v0.0.0-20200507184539-7aca7038b313
github.com/progrium/plugin-demo v0.0.0-20160206152045-d94df2206a64
)
10 changes: 10 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@
github.com/BurntSushi/toml v0.0.0-20160717150709-99064174e013 h1:8kwKwd3A/Fg0zN3OlURh5n1tqTR77TSECGH7NfK4HjE=
github.com/BurntSushi/toml v0.0.0-20160717150709-99064174e013/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/BurntSushi/toml v0.3.1 h1:WXkYYl6Yr3qBf1K79EBnL4mak0OimBfB0XUf9Vl28OQ=
github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
github.com/dokku/duplex v0.0.0-20160916172127-5bc6cb8042f7 h1:BBMM8QczgTcNTM6axgZA2pdR5SG0eePSh2GeOLpkgRw=
github.com/dokku/duplex v0.0.0-20160916172127-5bc6cb8042f7/go.mod h1:FagtW/LftfcKQuBjdmKHdhxCbTU7Gdv87BIOQ6dgAk4=
github.com/google/uuid v1.0.0 h1:b4Gk+7WdP/d3HZH8EJsZpvV7EtDOgaZLtnaNGIu1adA=
github.com/google/uuid v1.0.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/google/uuid v1.1.1 h1:Gkbcsh/GbpXz7lPftLA3P6TYMwjCLYm83jiFQZF/3gY=
github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
github.com/kardianos/osext v0.0.0-20160811001526-c2c54e542fb7 h1:pKv4oHt3kat9yf1jofmaRv3KxGaY5B7VV55GrfXFa74=
github.com/kardianos/osext v0.0.0-20160811001526-c2c54e542fb7/go.mod h1:1NbS8ALrpOvjt0rHPNLyCIeMtbizbir8U//inJ+zuB8=
github.com/kardianos/osext v0.0.0-20190222173326-2bc1f35cddc0 h1:iQTw/8FWTuc7uiaSepXwyf3o52HaUYcV+Tu66S3F5GA=
Expand All @@ -12,11 +18,15 @@ github.com/mitchellh/go-homedir v1.1.0 h1:lukF9ziXFxDFPkA1vsr5zpc1XuPDn/wFntq5mG
github.com/mitchellh/go-homedir v1.1.0/go.mod h1:SfyaCUpYCn1Vlf4IUYiD9fPX4A5wJrkLzIz1N1q0pr0=
github.com/pborman/uuid v0.0.0-20160824210600-b984ec7fa9ff h1:pTiDfW+iOjIxjZeCm88gKn/AmR09UGZYZdqif2yPRrM=
github.com/pborman/uuid v0.0.0-20160824210600-b984ec7fa9ff/go.mod h1:VyrYX9gd7irzKovcSS6BIIEwPRkP2Wm2m9ufcdFSJ34=
github.com/pborman/uuid v1.2.0 h1:J7Q5mO4ysT1dv8hyrUGHb9+ooztCXu1D8MY8DZYsu3g=
github.com/pborman/uuid v1.2.0/go.mod h1:X/NO0urCmaxf9VXbdlT7C2Yzkj2IKimNn4k+gtPdI/k=
github.com/progrium/crypto v0.0.0-20141231035031-e04455474e32 h1:TazRiCelU8NoJMn2z0/RIzv4lUUkp5YwAunbjUsODHQ=
github.com/progrium/crypto v0.0.0-20141231035031-e04455474e32/go.mod h1:spjB7wUvxDfIjoK9jtlCu07B/QaZwjtKlQeM3njS9QA=
github.com/progrium/go-basher v0.0.0-20150902213704-ad5de635edd1 h1:2BV2s3/Hy+PXTFAOn+q27LuYQffCFN79JfK0fu/JH9I=
github.com/progrium/go-basher v0.0.0-20150902213704-ad5de635edd1/go.mod h1:Oiy7jZEU1mm+gI1dt5MKYwxptmD37q8/UupxnwhMHtI=
github.com/progrium/go-basher v0.0.0-20200318002843-c5a2b04f6887 h1:fyVwWVGvBJB/0mzVsrAuwHNMbZNGpIyKBWsVunfDZOs=
github.com/progrium/go-basher v0.0.0-20200318002843-c5a2b04f6887/go.mod h1:Oiy7jZEU1mm+gI1dt5MKYwxptmD37q8/UupxnwhMHtI=
github.com/progrium/go-basher v0.0.0-20200507184539-7aca7038b313 h1:nsApkn3nQzXR9DP9yam0NmO7Y96vvu/XsjRQKJhjQac=
github.com/progrium/go-basher v0.0.0-20200507184539-7aca7038b313/go.mod h1:Oiy7jZEU1mm+gI1dt5MKYwxptmD37q8/UupxnwhMHtI=
github.com/progrium/plugin-demo v0.0.0-20160206152045-d94df2206a64 h1:FHNCTel7Yt0+4I1uvKfu2X+g8U8tHBBJb7zl+ohfmqM=
github.com/progrium/plugin-demo v0.0.0-20160206152045-d94df2206a64/go.mod h1:xwVfSlPMRhFysvnn0lOZ1Ruen2jTuzgwm4Hs0onTrlY=

0 comments on commit 14185cc

Please # to comment.