File tree 9 files changed +20
-10
lines changed
9 files changed +20
-10
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,16 @@ All notable changes to this project will be documented in this file.
10
10
11
11
### Changed
12
12
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
14
23
### Fixed
15
24
- @karanthukral Added error handling for when Procfile does not define the process being used
16
25
@@ -362,7 +371,8 @@ All notable changes to this project will be documented in this file.
362
371
- User for ` buildpack-build ` is ` $USER ` or randomized
363
372
- User for ` procfile-exec ` is ` $USER ` or detected from ` /app `
364
373
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
366
376
[ 0.3.30 ] : https://github.com/gliderlabs/herokuish/compare/v0.3.29...v0.3.30
367
377
[ 0.3.29 ] : https://github.com/gliderlabs/herokuish/compare/v0.3.28...v0.3.29
368
378
[ 0.3.28 ] : https://github.com/gliderlabs/herokuish/compare/v0.3.27...v0.3.28
Original file line number Diff line number Diff line change 1
1
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" \
3
3
--silent -L | tar -xzC /bin
4
4
RUN /bin/herokuish buildpack install \
5
5
&& ln -s /bin/herokuish /build \
Original file line number Diff line number Diff line change 1
- FROM golang:1.4-cross
1
+ FROM golang:1.8.3
2
2
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
Original file line number Diff line number Diff line change 1
1
NAME = herokuish
2
2
HARDWARE = $(shell uname -m)
3
- VERSION ?= 0.3.30
3
+ VERSION ?= 0.3.31
4
4
IMAGE_NAME ?= $(NAME )
5
5
BUILD_TAG ?= dev
6
6
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ Download and uncompress the latest binary tarball from [releases](https://github
18
18
For example, you can do this directly in your Dockerfiles installing into ` /bin ` as one step:
19
19
20
20
```
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 \
22
22
| tar -xzC /bin
23
23
```
24
24
Original file line number Diff line number Diff line change 1
- v64
1
+ v69
Original file line number Diff line number Diff line change 1
- v21
1
+ v22
Original file line number Diff line number Diff line change 1
- v51
1
+ v52
Original file line number Diff line number Diff line change 1
- v159
1
+ v163
You can’t perform that action at this time.
0 commit comments