From 6bc8338bfee6fc3f72589c57d1544d3b99b8791a Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Fri, 8 May 2020 23:11:40 -0400 Subject: [PATCH 1/2] fix: correct convert integer port to string --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 35c8c2d..6d4a931 100644 --- a/main.go +++ b/main.go @@ -201,7 +201,7 @@ func expandEnv(e procfileEntry, envPath string, allowEnv bool, defaultPort int) return os.Getenv("PS") } if key == portEnvVar { - return string(defaultPort) + return strconv.Itoa(defaultPort) } return "" } From 47046c926eaf6c307105effb79382d4be86d9baa Mon Sep 17 00:00:00 2001 From: Jose Diaz-Gonzalez Date: Fri, 8 May 2020 23:12:07 -0400 Subject: [PATCH 2/2] Release 0.8.2 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index d1cb213..9d33667 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ MAINTAINER_NAME = Jose Diaz-Gonzalez REPOSITORY = go-procfile-util HARDWARE = $(shell uname -m) SYSTEM_NAME = $(shell uname -s | tr '[:upper:]' '[:lower:]') -BASE_VERSION ?= 0.8.1 +BASE_VERSION ?= 0.8.2 IMAGE_NAME ?= $(MAINTAINER)/$(REPOSITORY) PACKAGECLOUD_REPOSITORY ?= dokku/dokku-betafish