diff --git a/CHANGELOG.md b/CHANGELOG.md
index 3e00e0d5ebe35192ea096f0cc21f80a37edc6b85..851b54414136611baa515fd4f2c23097511d331a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,16 @@
 # Revision history for ghcup
 
+## 0.1.7 -- 2020-07-20
+
+* Fix a bug in libarchive not unpacking some uncleanly packed bindists
+* Improved fish support in bootstrap-haskell
+* Only check for upgrades when not upgrading
+* Fix platform detection for i386 docker images
+* Improve alpine support
+  - more/proper bindists
+  - don't fall back to glibc based bindists
+  - install bindists with `--disable-ld-override` to avoid ld.gold bugs
+
 ## 0.1.6 -- 2020-07-13
 
 * Create a new curses (brick) based TUI, accessible via `ghcup tui` #24
diff --git a/ghcup.cabal b/ghcup.cabal
index 71d56bcc26f9c68f804ac22c38653caaef59e376..730999f94fed2b141bbbd604969c06a01fe4cfed 100644
--- a/ghcup.cabal
+++ b/ghcup.cabal
@@ -1,6 +1,6 @@
 cabal-version:      3.0
 name:               ghcup
-version:            0.1.6
+version:            0.1.7
 synopsis:           ghc toolchain installer as an exe/library
 description:
   A rewrite of the shell script ghcup, for providing
diff --git a/lib/GHCup/Version.hs b/lib/GHCup/Version.hs
index 70d6e3ae1bd67ccfab2874d99ebfbef9536905ec..8eb31dd01e15a2b591d3f4e173c40948d5b1f2e1 100644
--- a/lib/GHCup/Version.hs
+++ b/lib/GHCup/Version.hs
@@ -16,7 +16,7 @@ ghcupURL :: URI
 ghcupURL = [uri|https://www.haskell.org/ghcup/data/ghcup-0.0.2.json|]
 
 ghcUpVer :: PVP
-ghcUpVer = [pver|0.1.6|]
+ghcUpVer = [pver|0.1.7|]
 
 numericVer :: String
 numericVer = T.unpack . prettyPVP $ ghcUpVer