From 7844d5a42e7e0b546876ac3a3fa893f84bce6325 Mon Sep 17 00:00:00 2001 From: Jasper Van der Jeugt Date: Fri, 29 Dec 2017 22:23:48 +0100 Subject: Bump version to 0.9.0.1 --- .circleci/release.sh | 11 +++++++++-- CHANGELOG | 3 +++ stylish-haskell.cabal | 2 +- 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 -- cgit v1.2.3