Skip to content

Commit c2aa251

Browse files
Merge pull request #443 from gliderlabs/release-0.4.10
release 0.4.10
2 parents 1777bf7 + e498706 commit c2aa251

File tree

8 files changed

+16
-8
lines changed

8 files changed

+16
-8
lines changed

CHANGELOG.md

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

1111
### Changed
1212

13+
## [0.4.10] - 2019-03-14
14+
### Changed
15+
- @michaelshobbs Update go to version v104
16+
- @michaelshobbs Update nodejs to version v142
17+
- @michaelshobbs Update php to version v151
18+
- @michaelshobbs Update ruby to version v200
19+
1320
## [0.4.9] - 2019-03-07
1421
### Changed
1522
- @tnir Update go to version v102 to support Go 1.12
@@ -545,7 +552,8 @@ All notable changes to this project will be documented in this file.
545552
- User for `buildpack-build` is `$USER` or randomized
546553
- User for `procfile-exec` is `$USER` or detected from `/app`
547554

548-
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.9...HEAD
555+
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.10...HEAD
556+
[0.4.10]: https://github.com/gliderlabs/herokuish/compare/v0.4.9...v0.4.10
549557
[0.4.9]: https://github.com/gliderlabs/herokuish/compare/v0.4.8...v0.4.9
550558
[0.4.8]: https://github.com/gliderlabs/herokuish/compare/v0.4.7...v0.4.8
551559
[0.4.7]: https://github.com/gliderlabs/herokuish/compare/v0.4.6...v0.4.7

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.9/herokuish_0.4.9_linux_x86_64.tgz" \
14+
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.4.10/herokuish_0.4.10_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.9
3+
VERSION ?= 0.4.10
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.9/herokuish_0.4.9_linux_x86_64.tgz \
21+
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.4.10/herokuish_0.4.10_linux_x86_64.tgz \
2222
| tar -xzC /bin
2323
```
2424

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v102
1+
v104
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v139
1+
v142
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v150
1+
v151
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v199
1+
v200

0 commit comments

Comments
 (0)