File tree 11 files changed +20
-13
lines changed
buildpack-multi/tests/multi
11 files changed +20
-13
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,14 @@ All notable changes to this project will be documented in this file.
10
10
11
11
### Changed
12
12
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
+
13
21
## [ 0.4.4] - 2018-08-20
14
22
### Changed
15
23
- @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.
500
508
- User for ` buildpack-build ` is ` $USER ` or randomized
501
509
- User for ` procfile-exec ` is ` $USER ` or detected from ` /app `
502
510
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
504
513
[ 0.4.4 ] : https://github.com/gliderlabs/herokuish/compare/v0.4.3...v0.4.4
505
514
[ 0.4.3 ] : https://github.com/gliderlabs/herokuish/compare/v0.4.2...v0.4.3
506
515
[ 0.4.2 ] : https://github.com/gliderlabs/herokuish/compare/v0.4.1...v0.4.2
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ RUN apt-get update -qq \
11
11
dist-upgrade \
12
12
&& apt-get clean \
13
13
&& 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" \
15
15
--silent -L | tar -xzC /bin
16
16
RUN /bin/herokuish buildpack install \
17
17
&& ln -s /bin/herokuish /build \
Original file line number Diff line number Diff line change 1
1
NAME = herokuish
2
2
HARDWARE = $(shell uname -m)
3
- VERSION ?= 0.4.4
3
+ VERSION ?= 0.4.5
4
4
IMAGE_NAME ?= $(NAME )
5
5
BUILD_TAG ?= dev
6
6
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ Download and uncompress the latest binary tarball from [releases](https://github
18
18
For example, you can do this directly in your Dockerfiles installing into ` /bin ` as one step:
19
19
20
20
```
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 \
22
22
| tar -xzC /bin
23
23
```
24
24
Original file line number Diff line number Diff line change 1
- v90
1
+ v94
Original file line number Diff line number Diff line change 2
2
"name" : " example-nodejs-express" ,
3
3
"version" : " 0.0.1" ,
4
4
"engines" : {
5
- "node" : " 0.10.x" ,
6
- "npm" : " 1.2.x"
5
+ "node" : " 8.11.2"
7
6
},
8
7
"dependencies" : {
9
8
"express" : " 3.1.x"
Original file line number Diff line number Diff line change 1
- v123
1
+ v130
Original file line number Diff line number Diff line change 2
2
"name" : " example-nodejs-express" ,
3
3
"version" : " 0.0.1" ,
4
4
"engines" : {
5
- "node" : " 0.10.x" ,
6
- "npm" : " 1.2.x"
5
+ "node" : " 8.11.2"
7
6
},
8
7
"dependencies" : {
9
8
"express" : " 3.1.x"
Original file line number Diff line number Diff line change 1
- v143
1
+ v145
Original file line number Diff line number Diff line change 1
- v138
1
+ v144
Original file line number Diff line number Diff line change 1
- v190
1
+ v195
You can’t perform that action at this time.
0 commit comments