diff --git a/ChangeLog b/ChangeLog
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,9 @@
-xxxx - 0.3
+2019-12-18 - 0.3.1
+
+	* Fix bug in the windows wrapper script (#108)
+
+
+2019-12-15 - 0.3.0
 
 	* Add multi cradle, cabal multi cradle and none cradle
 	* Remove obelisk, bazel and default cradle types
diff --git a/hie-bios.cabal b/hie-bios.cabal
--- a/hie-bios.cabal
+++ b/hie-bios.cabal
@@ -1,6 +1,6 @@
 Cabal-Version:          2.2
 Name:                   hie-bios
-Version:                0.3.0
+Version:                0.3.1
 Author:                 Matthew Pickering <matthewtpickering@gmail.com>
 Maintainer:             Matthew Pickering <matthewtpickering@gmail.com>
 License:                BSD-3-Clause
diff --git a/wrappers/cabal.hs b/wrappers/cabal.hs
--- a/wrappers/cabal.hs
+++ b/wrappers/cabal.hs
@@ -10,7 +10,7 @@
   args <- getArgs
   output_file <- getEnv "HIE_BIOS_OUTPUT"
   ghcPath <- getEnv "HIE_BIOS_GHC"
-  ghcPathArgs <- fmap unwords (getEnv "HIE_BIOS_GHC_ARGS")
+  ghcPathArgs <- fmap words (getEnv "HIE_BIOS_GHC_ARGS")
   case args of
     "--interactive":_ -> do
       h <- openFile output_file AppendMode
