Skip to content

Commit

Permalink
Merge pull request #59 from dokku/master
Browse files Browse the repository at this point in the history
Release 0.7.1
  • Loading branch information
josegonzalez authored Oct 28, 2021
2 parents a0a128f + 6bd2504 commit 9bf216b
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Change Log
All notable changes to this project will be documented in this file.

## [0.7.1](https://github.com/dokku/plugn/compare/v0.7.0...v0.7.1) - 2021-10-28

### Fixed

- @josegonzalez Downgrade golang to avoid spurious SIGURG signals #58

## [0.7.0](https://github.com/dokku/plugn/compare/v0.6.1...v0.7.0) - 2021-10-27

### Added
Expand Down
8 changes: 3 additions & 5 deletions Dockerfile.build
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
FROM golang:1.17.2-buster
FROM golang:1.12.0-stretch

# hadolint ignore=DL3027
RUN apt-get update \
&& apt install apt-transport-https bats build-essential curl gnupg2 lintian rpm rsync rubygems-integration ruby-dev ruby -qy \
&& apt install apt-transport-https build-essential curl gnupg2 lintian rpm rsync rubygems-integration ruby-dev ruby -qy \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

# hadolint ignore=DL3028
RUN gem install --no-ri --no-rdoc --quiet rake fpm package_cloud

WORKDIR /src

RUN curl -fsSLO https://get.docker.com/builds/Linux/x86_64/docker-1.12.1.tgz && tar --strip-components=1 -xvzf docker-1.12.1.tgz -C /usr/local/bin && rm docker-1.12.1.tgz
RUN curl -fsSLO https://get.docker.com/builds/Linux/x86_64/docker-1.12.1.tgz && tar --strip-components=1 -xvzf docker-1.12.1.tgz -C /usr/local/bin
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.7.0
BASE_VERSION ?= 0.7.1
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.7.0/plugn_0.7.0_linux_amd64.tgz
$ wget -qO /tmp/plugn_latest.tgz https://github.com/dokku/plugn/releases/download/v0.7.1/plugn_0.7.1_linux_amd64.tgz
$ tar xzf /tmp/plugn_latest.tgz -C /usr/local/bin
```

Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module plugn

go 1.16
go 1.12

require (
github.com/BurntSushi/toml v0.4.1
Expand Down

0 comments on commit 9bf216b

Please sign in to comment.