Skip to content

Commit 3629f84

Browse files
authored
Merge pull request #410 from gliderlabs/master
release 0.4.6
2 parents 5aa8a6e + 381ca2b commit 3629f84

File tree

12 files changed

+26
-12
lines changed

12 files changed

+26
-12
lines changed

CHANGELOG.md

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

1111
### Changed
1212

13+
## [0.4.6] - 2018-12-26
14+
### Fixed
15+
- @HillLiu update golang to 1.11.2 for docker build
16+
17+
### Changed
18+
- @josegonzalez Update go to version v98
19+
- @josegonzalez Update nodejs to version v134
20+
- @josegonzalez Update python to version v146
21+
- @josegonzalez Update php to version v148
22+
- @josegonzalez Update ruby to version v197
23+
- @josegonzalez Update scala to version v83
24+
- @josegonzalez Update static to version v10
25+
1326
## [0.4.5] - 2018-10-26
1427
### Changed
1528
- @michaelshobbs Update nodejs to version v130 fb65b5a
@@ -508,7 +521,8 @@ All notable changes to this project will be documented in this file.
508521
- User for `buildpack-build` is `$USER` or randomized
509522
- User for `procfile-exec` is `$USER` or detected from `/app`
510523

511-
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.5...HEAD
524+
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.6...HEAD
525+
[0.4.6]: https://github.com/gliderlabs/herokuish/compare/v0.4.5...v0.4.6
512526
[0.4.5]: https://github.com/gliderlabs/herokuish/compare/v0.4.4...v0.4.5
513527
[0.4.4]: https://github.com/gliderlabs/herokuish/compare/v0.4.3...v0.4.4
514528
[0.4.3]: https://github.com/gliderlabs/herokuish/compare/v0.4.2...v0.4.3

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.5/herokuish_0.4.5_linux_x86_64.tgz" \
14+
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.4.6/herokuish_0.4.6_linux_x86_64.tgz" \
1515
--silent -L | tar -xzC /bin
1616
RUN /bin/herokuish buildpack install \
1717
&& ln -s /bin/herokuish /build \

Dockerfile.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.8.3
1+
FROM golang:1.11.2
22

33
ENV DEBIAN_FRONTEND noninteractive
44

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v94
1+
v98
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v130
1+
v134
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v145
1+
v148
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v144
1+
v146
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v195
1+
v197
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v82
1+
v83
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v9
1+
v10

0 commit comments

Comments
 (0)