Skip to content

Commit 616ec3f

Browse files
committed
Merge pull request #86 from gliderlabs/master
release 0.3.5
2 parents 942694f + 6af960d commit 616ec3f

File tree

11 files changed

+30
-7
lines changed

11 files changed

+30
-7
lines changed

CHANGELOG.md

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

1111
### Changed
1212

13+
14+
## [0.3.5] - 2015-11-25
15+
### Added
16+
- Add static buildpack and test
17+
18+
### Changed
19+
- Increased CURL_TIMEOUT env var in buildpacks from the default 30 to 180
20+
- Update python buildpack to v70
21+
- Update static buildpack to v5
22+
- Update local build env to docker 1.9.1
23+
24+
1325
## [0.3.4] - 2015-10-23
1426
### Changed
1527
- Upgrade clojure buildpack to version 70
@@ -21,6 +33,7 @@ All notable changes to this project will be documented in this file.
2133
- Update ruby buildpack to version 140
2234
- Update scala buildpack to version 63
2335

36+
2437
## [0.3.3] - 2015-09-10
2538
### Added
2639
- Use exec to run procfile entries
@@ -104,7 +117,9 @@ All notable changes to this project will be documented in this file.
104117
- User for `buildpack-build` is `$USER` or randomized
105118
- User for `procfile-exec` is `$USER` or detected from `/app`
106119

107-
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.3.3...HEAD
120+
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.3.5...HEAD
121+
[0.3.5]: https://github.com/gliderlabs/herokuish/compare/v0.3.4...v0.3.5
122+
[0.3.4]: https://github.com/gliderlabs/herokuish/compare/v0.3.3...v0.3.4
108123
[0.3.3]: https://github.com/gliderlabs/herokuish/compare/v0.3.2...v0.3.3
109124
[0.3.2]: https://github.com/gliderlabs/herokuish/compare/v0.3.1...v0.3.2
110125
[0.3.1]: https://github.com/gliderlabs/herokuish/compare/v0.3.0...v0.3.1

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM heroku/cedar:14
2-
RUN curl https://github.com/gliderlabs/herokuish/releases/download/v0.3.4/herokuish_0.3.4_linux_x86_64.tgz \
2+
RUN curl https://github.com/gliderlabs/herokuish/releases/download/v0.3.5/herokuish_0.3.5_linux_x86_64.tgz \
33
--silent -L | tar -xzC /bin
44
RUN /bin/herokuish buildpack install \
55
&& ln -s /bin/herokuish /build \

Dockerfile.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
FROM golang:1.4-cross
2-
RUN curl -s -o - https://get.docker.com/builds/Linux/x86_64/docker-1.6.2 > /usr/local/bin/docker && chmod +x /usr/local/bin/docker
2+
RUN curl -s -o - https://get.docker.com/builds/Linux/x86_64/docker-1.9.1 > /usr/local/bin/docker && chmod +x /usr/local/bin/docker

Makefile

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
NAME = herokuish
22
HARDWARE = $(shell uname -m)
3-
VERSION ?= 0.3.4
3+
VERSION ?= 0.3.5
44
IMAGE_NAME ?= $(NAME)
55
BUILD_TAG ?= dev
66

@@ -16,8 +16,9 @@ else
1616
endif
1717

1818
build-in-docker:
19-
docker build -f Dockerfile.build -t $(NAME)-build .
20-
docker run --rm -v /var/run/docker.sock:/var/run/docker.sock \
19+
docker build --rm -f Dockerfile.build -t $(NAME)-build .
20+
docker run --rm -v /var/run/docker.sock:/var/run/docker.sock:ro \
21+
-v /var/lib/docker:/var/lib/docker \
2122
-v ${PWD}:/usr/src/myapp -w /usr/src/myapp \
2223
-e IMAGE_NAME=$(IMAGE_NAME) -e BUILD_TAG=$(BUILD_TAG) -e VERSION=master \
2324
$(NAME)-build make -e deps build
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v68
1+
v70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
https://github.com/dokku/buildpack-nginx
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
v5

buildpacks/buildpack-static/tests/static/.static

Whitespace-only changes.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
static
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
source "$(dirname $BASH_SOURCE)/../../../test"
2+
app-test "$(basename $(dirname $BASH_SOURCE))"

include/buildpack.bash

+2
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ buildpack-setup() {
6060

6161
# Useful settings / features
6262
export CURL_CONNECT_TIMEOUT="30"
63+
export CURL_TIMEOUT="180"
64+
6365

6466
# Buildstep backwards compatibility
6567
if [[ -f "$app_path/.env" ]]; then

0 commit comments

Comments
 (0)