Skip to content

Commit b9aa569

Browse files
Merge pull request #308 from gliderlabs/master
release v0.3.33
2 parents 9a435a7 + 5938426 commit b9aa569

File tree

12 files changed

+44
-12
lines changed

12 files changed

+44
-12
lines changed

CHANGELOG.md

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

1111
### Changed
1212

13+
## [0.3.33] - 2017-11-01
14+
### Changed
15+
- @miyucy Update ruby version to v170
16+
- @Shelnutt2 Update go to v78 for go dep support
17+
- @michaelshobbs Update gradle to version v24
18+
- @michaelshobbs Update java to version v57
19+
- @michaelshobbs Update nodejs to version v111
20+
- @michaelshobbs Update php to version v126
21+
- @michaelshobbs Update python to version v120
22+
- @michaelshobbs Update scala to version v79
23+
24+
### Added
25+
- @miyucy Add task to bump up buildpacks version
26+
27+
1328
## [0.3.32] - 2017-08-29
1429
### Changed
1530
- @miyucy Update ruby version to v168
@@ -401,7 +416,8 @@ All notable changes to this project will be documented in this file.
401416
- User for `buildpack-build` is `$USER` or randomized
402417
- User for `procfile-exec` is `$USER` or detected from `/app`
403418

404-
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.3.32...HEAD
419+
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.3.33...HEAD
420+
[0.3.33]: https://github.com/gliderlabs/herokuish/compare/v0.3.32...v0.3.33
405421
[0.3.32]: https://github.com/gliderlabs/herokuish/compare/v0.3.31...v0.3.32
406422
[0.3.31]: https://github.com/gliderlabs/herokuish/compare/v0.3.30...v0.3.31
407423
[0.3.30]: https://github.com/gliderlabs/herokuish/compare/v0.3.29...v0.3.30

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.32/herokuish_0.3.32_linux_x86_64.tgz" \
2+
RUN curl "https://github.com/gliderlabs/herokuish/releases/download/v0.3.33/herokuish_0.3.33_linux_x86_64.tgz" \
33
--silent -L | tar -xzC /bin
44
RUN /bin/herokuish buildpack install \
55
&& ln -s /bin/herokuish /build \

Makefile

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

@@ -78,4 +78,20 @@ release: build
7878
gh-release create gliderlabs/$(NAME) $(VERSION) \
7979
$(shell git rev-parse --abbrev-ref HEAD) v$(VERSION)
8080

81+
bumpup:
82+
for i in $(BUILDPACK_ORDER); do \
83+
url=$$(cat buildpacks/buildpack-$$i/buildpack-url) ; \
84+
version=$$(git ls-remote --tags $$url | awk '{print $$2}' | sed 's/refs\/tags\///' | egrep 'v[0-9]+$$' | sed 's/v//' | sort -n | tail -n 1) ; \
85+
if [[ "x$$version" != 'x' ]]; then \
86+
echo v$$version > buildpacks/buildpack-$$i/buildpack-version ; \
87+
git status -s buildpacks/buildpack-$$i/buildpack-version | fgrep ' M ' ; \
88+
if [[ $$? -eq 0 ]] ; then \
89+
git checkout -b $$(date +%Y%m%d)-update-$$i ; \
90+
git add buildpacks/buildpack-$$i/buildpack-version ; \
91+
git commit -m "Update $$i to version v$$version" ; \
92+
git checkout - ; \
93+
fi ; \
94+
fi ; \
95+
done
96+
8197
.PHONY: build

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.3.32/herokuish_0.3.32_linux_x86_64.tgz \
21+
RUN curl --location --silent https://github.com/gliderlabs/herokuish/releases/download/v0.3.33/herokuish_0.3.33_linux_x86_64.tgz \
2222
| tar -xzC /bin
2323
```
2424

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v72
1+
v78
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v23
1+
v24
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v53
1+
v57
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v99
1+
v111
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v122
1+
v126
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v99
1+
v120
+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v168
1+
v170
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v78
1+
v79

0 commit comments

Comments
 (0)