File tree 12 files changed +44
-12
lines changed
12 files changed +44
-12
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,21 @@ All notable changes to this project will be documented in this file.
10
10
11
11
### Changed
12
12
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
+
13
28
## [ 0.3.32] - 2017-08-29
14
29
### Changed
15
30
- @miyucy Update ruby version to v168
@@ -401,7 +416,8 @@ All notable changes to this project will be documented in this file.
401
416
- User for ` buildpack-build ` is ` $USER ` or randomized
402
417
- User for ` procfile-exec ` is ` $USER ` or detected from ` /app `
403
418
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
405
421
[ 0.3.32 ] : https://github.com/gliderlabs/herokuish/compare/v0.3.31...v0.3.32
406
422
[ 0.3.31 ] : https://github.com/gliderlabs/herokuish/compare/v0.3.30...v0.3.31
407
423
[ 0.3.30 ] : https://github.com/gliderlabs/herokuish/compare/v0.3.29...v0.3.30
Original file line number Diff line number Diff line change 1
1
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" \
3
3
--silent -L | tar -xzC /bin
4
4
RUN /bin/herokuish buildpack install \
5
5
&& 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.3.32
3
+ VERSION ?= 0.3.33
4
4
IMAGE_NAME ?= $(NAME )
5
5
BUILD_TAG ?= dev
6
6
@@ -78,4 +78,20 @@ release: build
78
78
gh-release create gliderlabs/$(NAME ) $(VERSION ) \
79
79
$(shell git rev-parse --abbrev-ref HEAD) v$(VERSION )
80
80
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
+
81
97
.PHONY : build
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.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 \
22
22
| tar -xzC /bin
23
23
```
24
24
Original file line number Diff line number Diff line change 1
- v72
1
+ v78
Original file line number Diff line number Diff line change 1
- v23
1
+ v24
Original file line number Diff line number Diff line change 1
- v53
1
+ v57
Original file line number Diff line number Diff line change 1
- v99
1
+ v111
Original file line number Diff line number Diff line change 1
- v122
1
+ v126
Original file line number Diff line number Diff line change 1
- v99
1
+ v120
Original file line number Diff line number Diff line change 1
- v168
1
+ v170
Original file line number Diff line number Diff line change 1
- v78
1
+ v79
You can’t perform that action at this time.
0 commit comments