Skip to content

Commit 7844d5a

Browse files
committed
Bump version to 0.9.0.1
1 parent fe69815 commit 7844d5a

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

.circleci/release.sh

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,24 @@ if [[ -z "$TAG" ]]; then
1818
exit 0
1919
fi
2020

21-
GHR_VERSION="v0.5.4"
22-
2321
# Install ghr
22+
GHR_VERSION="v0.5.4"
2423
wget --quiet \
2524
"https://github.com/tcnksm/ghr/releases/download/${GHR_VERSION}/ghr_${GHR_VERSION}_linux_386.zip"
2625
unzip ghr_${GHR_VERSION}_linux_386.zip
2726

27+
# Install upx
28+
UPX_VERSION="3.94"
29+
wget --quiet \
30+
"https://github.com/upx/upx/releases/download/v${UPX_VERSION}/upx-${UPX_VERSION}-amd64_linux.tar.xz"
31+
tar xf upx-${UPX_VERSION}-amd64_linux.tar.xz
32+
mv upx-${UPX_VERSION}-amd64_linux/upx .
33+
2834
# Create tarball
2935
PACKAGE="$REPOSITORY-$TAG-$SUFFIX"
3036
mkdir -p "$PACKAGE"
3137
cp "$(which "$BINARY")" "$PACKAGE"
38+
./upx "$PACKAGE/$BINARY"
3239
cp README.* "$PACKAGE"
3340
tar -czf "$PACKAGE.tar.gz" "$PACKAGE"
3441
rm -r "$PACKAGE"

CHANGELOG

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# CHANGELOG
22

3+
- 0.9.0.1 (2017-12-29)
4+
* Fix missing Extra-source-file in cabal file
5+
36
- 0.9.0.0 (2017-12-26)
47
* Embed the default configuration
58
* Add platform-specific configuration paths (by Jan Tojnar)

stylish-haskell.cabal

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Name: stylish-haskell
2-
Version: 0.9.0.0
2+
Version: 0.9.0.1
33
Synopsis: Haskell code prettifier
44
Homepage: https://github.com/jaspervdj/stylish-haskell
55
License: BSD3

0 commit comments

Comments
 (0)