diff --git a/CHANGELOG b/CHANGELOG
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,9 @@
+0.1.36:
+	* Fix handling of unicode for type/info queries
+
+0.1.35:
+	* Support for GHC 8.6.3
+
 0.1.34:
 	* Support for GHC 8.6.1
 
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,11 +1,11 @@
-# intero [![Build Status](https://travis-ci.org/commercialhaskell/intero.svg)](https://travis-ci.org/commercialhaskell/intero) [![MELPA](https://melpa.org/packages/intero-badge.svg)](https://melpa.org/#/intero) [![MELPA Stable](https://stable.melpa.org/packages/intero-badge.svg)](https://stable.melpa.org/#/intero) [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/commercialhaskell/path?svg=true)](https://ci.appveyor.com/project/commercialhaskell/intero)
+# intero [![Build Status](https://travis-ci.org/chrisdone/intero.svg)](https://travis-ci.org/chrisdone/intero) [![MELPA](https://melpa.org/packages/intero-badge.svg)](https://melpa.org/#/intero) [![MELPA Stable](https://stable.melpa.org/packages/intero-badge.svg)](https://stable.melpa.org/#/intero) [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/chrisdone/path?svg=true)](https://ci.appveyor.com/project/chrisdone/intero)
 
 Complete interactive development program for Haskell
 
 ## Intero for Emacs
 
 Please see
-[the homepage for Intero for Emacs](http://commercialhaskell.github.io/intero).
+[the homepage for Intero for Emacs](http://chrisdone.github.io/intero).
 
 #### Default key bindings
 
@@ -59,13 +59,3 @@
 
 If you would like to build support into a new editor or IDE, please see
 [TOOLING.md](https://github.com/commercialhaskell/intero/blob/master/TOOLING.md).
-
-## Issues
-
-Issues are split into low/medium/high priorities which dictates which
-ones will be implemented first.
-
-* [High priority issues](https://github.com/commercialhaskell/intero/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A%22priority%3A+high%22+)
-* [Medium priority issues](https://github.com/commercialhaskell/intero/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A%22priority%3A+medium%22)
-* [Low priority issues](https://github.com/commercialhaskell/intero/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+label%3A%22priority%3A+low%22)
-* [Unprioritized issues](https://github.com/commercialhaskell/intero/issues?utf8=%E2%9C%93&q=is%3Aissue+is%3Aopen+-label%3A%22priority%3A+low%22++-label%3A%22priority%3A+medium%22++-label%3A%22priority%3A+high%22+)
diff --git a/elisp/intero.el b/elisp/intero.el
--- a/elisp/intero.el
+++ b/elisp/intero.el
@@ -72,9 +72,9 @@
 (defcustom intero-package-version
   (cl-case system-type
     ;; Until <https://github.com/haskell/network/issues/313> is fixed:
-    (windows-nt "0.1.35")
-    (cygwin "0.1.35")
-    (t "0.1.35"))
+    (windows-nt "0.1.36")
+    (cygwin "0.1.36")
+    (t "0.1.36"))
   "Package version to auto-install.
 
 This version does not necessarily have to be the latest version
diff --git a/intero.cabal b/intero.cabal
--- a/intero.cabal
+++ b/intero.cabal
@@ -1,7 +1,7 @@
 name:
   intero
 version:
-  0.1.35
+  0.1.36
 synopsis:
   Complete interactive development program for Haskell
 license:
diff --git a/src/InteractiveUI.hs b/src/InteractiveUI.hs
--- a/src/InteractiveUI.hs
+++ b/src/InteractiveUI.hs
@@ -694,6 +694,8 @@
            (let loop = do
                   (h, _, _) <- Network.accept sock
                   hSetBuffering h NoBuffering
+                  mencoding <- hGetEncoding stdin
+                  hSetEncoding h (fromMaybe utf8 mencoding)
                   _ <-
                     forkIO
                       (Exception.finally
