Skip to content

Commit 1777bf7

Browse files
Merge pull request #434 from gliderlabs/master
release 0.4.9
2 parents c77c555 + 71dbcc2 commit 1777bf7

File tree

9 files changed

+18
-9
lines changed

9 files changed

+18
-9
lines changed

CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,14 @@ All notable changes to this project will be documented in this file.
1010

1111
### Changed
1212

13+
## [0.4.9] - 2019-03-07
14+
### Changed
15+
- @tnir Update go to version v102 to support Go 1.12
16+
- @michaelshobbs Update java to version v63
17+
- @michaelshobbs Update nodejs to version v139
18+
- @michaelshobbs Update python to version v149
19+
- @michaelshobbs Update ruby to version v199
20+
1321
## [0.4.8] - 2019-02-15
1422
### Changed
1523
- @nbyl Update gradle buildpack to v28
@@ -537,7 +545,8 @@ All notable changes to this project will be documented in this file.
537545
- User for `buildpack-build` is `$USER` or randomized
538546
- User for `procfile-exec` is `$USER` or detected from `/app`
539547

540-
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.8...HEAD
548+
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.9...HEAD
549+
[0.4.9]: https://github.com/gliderlabs/herokuish/compare/v0.4.8...v0.4.9
541550
[0.4.8]: https://github.com/gliderlabs/herokuish/compare/v0.4.7...v0.4.8
542551
[0.4.7]: https://github.com/gliderlabs/herokuish/compare/v0.4.6...v0.4.7
543552
[0.4.6]: https://github.com/gliderlabs/herokuish/compare/v0.4.5...v0.4.6

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ RUN apt-get update -qq \
1111
dist-upgrade \
1212
&& apt-get clean \
1313
&& rm -rf /var/cache/apt/archives/* /var/lib/apt/lists/* /var/tmp/*
14-
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.4.8/herokuish_0.4.8_linux_x86_64.tgz" \
14+
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.4.9/herokuish_0.4.9_linux_x86_64.tgz" \
1515
--silent -L | tar -xzC /bin
1616
RUN /bin/herokuish buildpack install \
1717
&& 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.4.8
3+
VERSION ?= 0.4.9
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.4.8/herokuish_0.4.8_linux_x86_64.tgz \
21+
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.4.9/herokuish_0.4.9_linux_x86_64.tgz \
2222
| tar -xzC /bin
2323
```
2424

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v100
1+
v102
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v62
1+
v63
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v137
1+
v139
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v147
1+
v149
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v198
1+
v199

0 commit comments

Comments
 (0)