Skip to content

Commit 5aa8a6e

Browse files
Merge pull request #397 from gliderlabs/master
release 0.4.5
2 parents 89176cd + f4593ee commit 5aa8a6e

File tree

11 files changed

+20
-13
lines changed

11 files changed

+20
-13
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.5] - 2018-10-26
14+
### Changed
15+
- @michaelshobbs Update nodejs to version v130 fb65b5a
16+
- @michaelshobbs Update python to version v144 bfabe39
17+
- @michaelshobbs Update go to version v94 ccd7e67
18+
- @michaelshobbs Update php to version v145 eaa3ca7
19+
- @michaelshobbs Update ruby to version v195 f24f45f
20+
1321
## [0.4.4] - 2018-08-20
1422
### Changed
1523
- @natanrolnik Remove .git directory deletion upon build pack installation
@@ -500,7 +508,8 @@ All notable changes to this project will be documented in this file.
500508
- User for `buildpack-build` is `$USER` or randomized
501509
- User for `procfile-exec` is `$USER` or detected from `/app`
502510

503-
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.4...HEAD
511+
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.5...HEAD
512+
[0.4.5]: https://github.com/gliderlabs/herokuish/compare/v0.4.4...v0.4.5
504513
[0.4.4]: https://github.com/gliderlabs/herokuish/compare/v0.4.3...v0.4.4
505514
[0.4.3]: https://github.com/gliderlabs/herokuish/compare/v0.4.2...v0.4.3
506515
[0.4.2]: https://github.com/gliderlabs/herokuish/compare/v0.4.1...v0.4.2

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v90
1+
v94

buildpacks/buildpack-multi/tests/multi/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"name": "example-nodejs-express",
33
"version": "0.0.1",
44
"engines": {
5-
"node": "0.10.x",
6-
"npm": "1.2.x"
5+
"node": "8.11.2"
76
},
87
"dependencies": {
98
"express": "3.1.x"
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v123
1+
v130

buildpacks/buildpack-nodejs/tests/nodejs-express/package.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"name": "example-nodejs-express",
33
"version": "0.0.1",
44
"engines": {
5-
"node": "0.10.x",
6-
"npm": "1.2.x"
5+
"node": "8.11.2"
76
},
87
"dependencies": {
98
"express": "3.1.x"
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v143
1+
v145
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v138
1+
v144
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v190
1+
v195

0 commit comments

Comments
 (0)