summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJasper Van der Jeugt <m@jaspervdj.be>2017-12-29 22:23:48 +0100
committerJasper Van der Jeugt <m@jaspervdj.be>2017-12-29 22:23:52 +0100
commit7844d5a42e7e0b546876ac3a3fa893f84bce6325 (patch)
tree8d55d170b95039a64e69fd3ee4f6ac7379474966
parentfe698151f120590baf5828a1f487da1e95cb1196 (diff)
downloadstylish-haskell-7844d5a42e7e0b546876ac3a3fa893f84bce6325.tar.gz
Bump version to 0.9.0.1v0.9.0.1
-rwxr-xr-x.circleci/release.sh11
-rw-r--r--CHANGELOG3
-rw-r--r--stylish-haskell.cabal2
3 files changed, 13 insertions, 3 deletions
diff --git a/.circleci/release.sh b/.circleci/release.sh
index 2632760..ca474ce 100755
--- a/.circleci/release.sh
+++ b/.circleci/release.sh
@@ -18,17 +18,24 @@ if [[ -z "$TAG" ]]; then
exit 0
fi
-GHR_VERSION="v0.5.4"
-
# Install ghr
+GHR_VERSION="v0.5.4"
wget --quiet \
"https://github.com/tcnksm/ghr/releases/download/${GHR_VERSION}/ghr_${GHR_VERSION}_linux_386.zip"
unzip ghr_${GHR_VERSION}_linux_386.zip
+# Install upx
+UPX_VERSION="3.94"
+wget --quiet \
+ "https://github.com/upx/upx/releases/download/v${UPX_VERSION}/upx-${UPX_VERSION}-amd64_linux.tar.xz"
+tar xf upx-${UPX_VERSION}-amd64_linux.tar.xz
+mv upx-${UPX_VERSION}-amd64_linux/upx .
+
# Create tarball
PACKAGE="$REPOSITORY-$TAG-$SUFFIX"
mkdir -p "$PACKAGE"
cp "$(which "$BINARY")" "$PACKAGE"
+./upx "$PACKAGE/$BINARY"
cp README.* "$PACKAGE"
tar -czf "$PACKAGE.tar.gz" "$PACKAGE"
rm -r "$PACKAGE"
diff --git a/CHANGELOG b/CHANGELOG
index b843594..1be4456 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,5 +1,8 @@
# CHANGELOG
+- 0.9.0.1 (2017-12-29)
+ * Fix missing Extra-source-file in cabal file
+
- 0.9.0.0 (2017-12-26)
* Embed the default configuration
* Add platform-specific configuration paths (by Jan Tojnar)
diff --git a/stylish-haskell.cabal b/stylish-haskell.cabal
index 2265ba7..1b8dab6 100644
--- a/stylish-haskell.cabal
+++ b/stylish-haskell.cabal
@@ -1,5 +1,5 @@
Name: stylish-haskell
-Version: 0.9.0.0
+Version: 0.9.0.1
Synopsis: Haskell code prettifier
Homepage: https://github.com/jaspervdj/stylish-haskell
License: BSD3