Skip to content

Commit 402d813

Browse files
Merge pull request #242 from gliderlabs/master
release 0.3.27
2 parents 6142545 + 1d75c33 commit 402d813

File tree

5 files changed

+11
-5
lines changed

5 files changed

+11
-5
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ All notable changes to this project will be documented in this file.
1111
### Changed
1212

1313

14+
## [0.3.27] - 2017-03-21
15+
### Changed
16+
- @michaelshobbs Update ruby to version v155
17+
18+
1419
## [0.3.26] - 2017-02-28
1520
### Changed
1621
- @wfarr Update go buildpack to v62
@@ -329,7 +334,8 @@ All notable changes to this project will be documented in this file.
329334
- User for `buildpack-build` is `$USER` or randomized
330335
- User for `procfile-exec` is `$USER` or detected from `/app`
331336

332-
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.3.26...HEAD
337+
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.3.27...HEAD
338+
[0.3.27]: https://github.com/gliderlabs/herokuish/compare/v0.3.26...v0.3.27
333339
[0.3.26]: https://github.com/gliderlabs/herokuish/compare/v0.3.25...v0.3.26
334340
[0.3.25]: https://github.com/gliderlabs/herokuish/compare/v0.3.24...v0.3.25
335341
[0.3.24]: https://github.com/gliderlabs/herokuish/compare/v0.3.23...v0.3.24

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.26/herokuish_0.3.26_linux_x86_64.tgz \
2+
RUN curl https://github.com/gliderlabs/herokuish/releases/download/v0.3.27/herokuish_0.3.27_linux_x86_64.tgz \
33
--silent -L | tar -xzC /bin
44
RUN /bin/herokuish buildpack install \
55
&& ln -s /bin/herokuish /build \

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.26
3+
VERSION ?= 0.3.27
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.26/herokuish_0.3.26_linux_x86_64.tgz \
21+
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.3.27/herokuish_0.3.27_linux_x86_64.tgz \
2222
| tar -xzC /bin
2323
```
2424

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v153
1+
v155

0 commit comments

Comments
 (0)