Skip to content

Commit 641a506

Browse files
Merge pull request #269 from gliderlabs/master
release v0.3.31
2 parents 42717b8 + 91f0723 commit 641a506

File tree

9 files changed

+20
-10
lines changed

9 files changed

+20
-10
lines changed

CHANGELOG.md

+12-2
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,16 @@ All notable changes to this project will be documented in this file.
1010

1111
### Changed
1212

13-
## [0.3.30] - 2017-06-08
13+
## [0.3.31] - 2017-06-21
14+
### Changed
15+
- @michaelshobbs Update go to version v69
16+
- @michaelshobbs Update ruby to version v163
17+
- @michaelshobbs Update java to version v52
18+
- @michaelshobbs Update gradle to version v22
19+
- @michaelshobbs use go 1.8.3 in dev
20+
21+
22+
## [0.3.30] - 2017-06-21
1423
### Fixed
1524
- @karanthukral Added error handling for when Procfile does not define the process being used
1625

@@ -362,7 +371,8 @@ All notable changes to this project will be documented in this file.
362371
- User for `buildpack-build` is `$USER` or randomized
363372
- User for `procfile-exec` is `$USER` or detected from `/app`
364373

365-
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.3.30...HEAD
374+
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.3.31...HEAD
375+
[0.3.31]: https://github.com/gliderlabs/herokuish/compare/v0.3.30...v0.3.31
366376
[0.3.30]: https://github.com/gliderlabs/herokuish/compare/v0.3.29...v0.3.30
367377
[0.3.29]: https://github.com/gliderlabs/herokuish/compare/v0.3.28...v0.3.29
368378
[0.3.28]: https://github.com/gliderlabs/herokuish/compare/v0.3.27...v0.3.28

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM heroku/cedar:14
2-
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.3.30/herokuish_0.3.30_linux_x86_64.tgz" \
2+
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.3.31/herokuish_0.3.31_linux_x86_64.tgz" \
33
--silent -L | tar -xzC /bin
44
RUN /bin/herokuish buildpack install \
55
&& ln -s /bin/herokuish /build \

Dockerfile.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
FROM golang:1.4-cross
1+
FROM golang:1.8.3
22
RUN curl -s -o - https://get.docker.com/builds/Linux/x86_64/docker-1.9.1 > /usr/local/bin/docker && chmod +x /usr/local/bin/docker

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
NAME = herokuish
22
HARDWARE = $(shell uname -m)
3-
VERSION ?= 0.3.30
3+
VERSION ?= 0.3.31
44
IMAGE_NAME ?= $(NAME)
55
BUILD_TAG ?= dev
66

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Download and uncompress the latest binary tarball from [releases](https://github
1818
For example, you can do this directly in your Dockerfiles installing into `/bin` as one step:
1919

2020
```
21-
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.3.30/herokuish_0.3.30_linux_x86_64.tgz \
21+
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.3.31/herokuish_0.3.31_linux_x86_64.tgz \
2222
| tar -xzC /bin
2323
```
2424

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v64
1+
v69
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v21
1+
v22
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v51
1+
v52
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v159
1+
v163

0 commit comments

Comments
 (0)