Skip to content

Commit edf0236

Browse files
Merge pull request #325 from gliderlabs/master
release v0.3.34
2 parents b9aa569 + 1bf5365 commit edf0236

File tree

13 files changed

+30
-13
lines changed

13 files changed

+30
-13
lines changed

CHANGELOG.md

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

1111
### Changed
1212

13+
## [0.3.34] - 2018-01-30
14+
### Added
15+
- @josegonzalez feat: update all installed service dependencies when building the docker image
16+
17+
### Changed
18+
- @josegonzalez Update ruby to version v173
19+
- @josegonzalez Update python to version v123
20+
- @josegonzalez Update clojure to version v78
21+
- @josegonzalez Update gradle to version v25
22+
- @josegonzalez Update php to version v130
23+
- @josegonzalez Update static to version v9
24+
- @michaelshobbs Update go to version v81
25+
- @michaelshobbs Update java to version v59
26+
- @michaelshobbs Update nodejs to version v116
27+
1328
## [0.3.33] - 2017-11-01
1429
### Changed
1530
- @miyucy Update ruby version to v170
@@ -416,7 +431,8 @@ All notable changes to this project will be documented in this file.
416431
- User for `buildpack-build` is `$USER` or randomized
417432
- User for `procfile-exec` is `$USER` or detected from `/app`
418433

419-
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.3.33...HEAD
434+
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.3.34...HEAD
435+
[0.3.34]: https://github.com/gliderlabs/herokuish/compare/v0.3.33...v0.3.34
420436
[0.3.33]: https://github.com/gliderlabs/herokuish/compare/v0.3.32...v0.3.33
421437
[0.3.32]: https://github.com/gliderlabs/herokuish/compare/v0.3.31...v0.3.32
422438
[0.3.31]: https://github.com/gliderlabs/herokuish/compare/v0.3.30...v0.3.31

Dockerfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
FROM heroku/cedar:14
2-
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.3.33/herokuish_0.3.33_linux_x86_64.tgz" \
2+
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.3.34/herokuish_0.3.34_linux_x86_64.tgz" \
33
--silent -L | tar -xzC /bin
4+
RUN apt-get update && apt-get -qq -y --force-yes dist-upgrade && apt-get clean && rm -rf /var/cache/apt/archives/*
45
RUN /bin/herokuish buildpack install \
56
&& ln -s /bin/herokuish /build \
67
&& ln -s /bin/herokuish /start \

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

Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v77
1+
v78
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v78
1+
v81
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v24
1+
v25
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v57
1+
v59
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v111
1+
v116
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v126
1+
v130
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v120
1+
v123
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v170
1+
v173
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v8
1+
v9

0 commit comments

Comments
 (0)