Skip to content

Commit

Permalink
Merge pull request #397 from gliderlabs/master
Browse files Browse the repository at this point in the history
release 0.4.5
  • Loading branch information
michaelshobbs authored Oct 26, 2018
2 parents 89176cd + f4593ee commit 5aa8a6e
Show file tree
Hide file tree
Showing 11 changed files with 20 additions and 13 deletions.
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,14 @@ All notable changes to this project will be documented in this file.

### Changed

## [0.4.5] - 2018-10-26
### Changed
- @michaelshobbs Update nodejs to version v130 fb65b5a
- @michaelshobbs Update python to version v144 bfabe39
- @michaelshobbs Update go to version v94 ccd7e67
- @michaelshobbs Update php to version v145 eaa3ca7
- @michaelshobbs Update ruby to version v195 f24f45f

## [0.4.4] - 2018-08-20
### Changed
- @natanrolnik Remove .git directory deletion upon build pack installation
Expand Down Expand Up @@ -500,7 +508,8 @@ All notable changes to this project will be documented in this file.
- User for `buildpack-build` is `$USER` or randomized
- User for `procfile-exec` is `$USER` or detected from `/app`

[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.4...HEAD
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.4.5...HEAD
[0.4.5]: https://github.com/gliderlabs/herokuish/compare/v0.4.4...v0.4.5
[0.4.4]: https://github.com/gliderlabs/herokuish/compare/v0.4.3...v0.4.4
[0.4.3]: https://github.com/gliderlabs/herokuish/compare/v0.4.2...v0.4.3
[0.4.2]: https://github.com/gliderlabs/herokuish/compare/v0.4.1...v0.4.2
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN apt-get update -qq \
dist-upgrade \
&& apt-get clean \
&& rm -rf /var/cache/apt/archives/* /var/lib/apt/lists/* /var/tmp/*
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.4.4/herokuish_0.4.4_linux_x86_64.tgz" \
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.4.5/herokuish_0.4.5_linux_x86_64.tgz" \
--silent -L | tar -xzC /bin
RUN /bin/herokuish buildpack install \
&& ln -s /bin/herokuish /build \
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
NAME = herokuish
HARDWARE = $(shell uname -m)
VERSION ?= 0.4.4
VERSION ?= 0.4.5
IMAGE_NAME ?= $(NAME)
BUILD_TAG ?= dev

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Download and uncompress the latest binary tarball from [releases](https://github
For example, you can do this directly in your Dockerfiles installing into `/bin` as one step:

```
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.4.4/herokuish_0.4.4_linux_x86_64.tgz \
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.4.5/herokuish_0.4.5_linux_x86_64.tgz \
| tar -xzC /bin
```

Expand Down
2 changes: 1 addition & 1 deletion buildpacks/buildpack-go/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v90
v94
3 changes: 1 addition & 2 deletions buildpacks/buildpack-multi/tests/multi/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
"name": "example-nodejs-express",
"version": "0.0.1",
"engines": {
"node": "0.10.x",
"npm": "1.2.x"
"node": "8.11.2"
},
"dependencies": {
"express": "3.1.x"
Expand Down
2 changes: 1 addition & 1 deletion buildpacks/buildpack-nodejs/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v123
v130
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@
"name": "example-nodejs-express",
"version": "0.0.1",
"engines": {
"node": "0.10.x",
"npm": "1.2.x"
"node": "8.11.2"
},
"dependencies": {
"express": "3.1.x"
Expand Down
2 changes: 1 addition & 1 deletion buildpacks/buildpack-php/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v143
v145
2 changes: 1 addition & 1 deletion buildpacks/buildpack-python/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v138
v144
2 changes: 1 addition & 1 deletion buildpacks/buildpack-ruby/buildpack-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v190
v195

0 comments on commit 5aa8a6e

Please sign in to comment.