Skip to content

Commit 0a01026

Browse files
committed
release 0.3.22
1 parent e756307 commit 0a01026

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

CHANGELOG.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,17 @@ All notable changes to this project will be documented in this file.
1111
### Changed
1212

1313

14+
## [0.3.22] - 2016-11-18
15+
### Removed
16+
- @michaelshobbs remove html2text dependency
17+
18+
### Changed
19+
- @michaelshobbs changelog header correction for 0.3.21
20+
- @michaelshobbs Update java to version v48
21+
- @michaelshobbs Update ruby to version v148
22+
- @michaelshobbs Update python to version v85
23+
24+
1425
## [0.3.21] - 2016-11-14
1526
### Fixed
1627
- @michaelshobbs skip blank lines in .env. closes #195
@@ -281,7 +292,8 @@ All notable changes to this project will be documented in this file.
281292
- User for `buildpack-build` is `$USER` or randomized
282293
- User for `procfile-exec` is `$USER` or detected from `/app`
283294

284-
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.3.21...HEAD
295+
[unreleased]: https://github.com/gliderlabs/herokuish/compare/v0.3.22...HEAD
296+
[0.3.22]: https://github.com/gliderlabs/herokuish/compare/v0.3.21...v0.3.22
285297
[0.3.21]: https://github.com/gliderlabs/herokuish/compare/v0.3.20...v0.3.21
286298
[0.3.20]: https://github.com/gliderlabs/herokuish/compare/v0.3.19...v0.3.20
287299
[0.3.19]: https://github.com/gliderlabs/herokuish/compare/v0.3.18...v0.3.19

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

Makefile

+1-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.21
3+
VERSION ?= 0.3.22
44
IMAGE_NAME ?= $(NAME)
55
BUILD_TAG ?= dev
66

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

0 commit comments

Comments
 (0)