diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,7 @@
+### 0.1.2 [2017.02.20]
+* Squash minor bug in fixCodePage (the same bug reported in
+  https://github.com/commercialhaskell/stack/pull/3002)
+
 ### 0.1.1 [2016.11.09]
 * Fix the build on non-Intel architectures (thanks, erikd!)
 
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -1,4 +1,4 @@
-Copyright (c) 2016, Ryan Scott
+Copyright (c) 2016-2017, Ryan Scott
 
 All rights reserved.
 
diff --git a/code-page.cabal b/code-page.cabal
--- a/code-page.cabal
+++ b/code-page.cabal
@@ -1,5 +1,5 @@
 name:                code-page
-version:             0.1.1
+version:             0.1.2
 synopsis:            Windows code page library for Haskell
 description:         This library provides two modules:
                      .
@@ -17,7 +17,7 @@
 author:              Ryan Scott
 maintainer:          Ryan Scott <ryan.gl.scott@gmail.com>
 stability:           Provisional
-copyright:           (C) 2016 Ryan Scott
+copyright:           (C) 2016-2017 Ryan Scott
 category:            System
 build-type:          Simple
 extra-source-files:  CHANGELOG.md, README.md, include/*.h
@@ -28,7 +28,7 @@
                    , GHC == 7.6.3
                    , GHC == 7.8.4
                    , GHC == 7.10.3
-                   , GHC == 8.0.1
+                   , GHC == 8.0.2
 
 source-repository head
   type:                git
@@ -54,7 +54,7 @@
   main-is:             Tests.hs
 
   build-depends:       base      >= 4.3 && < 5
-                     , code-page == 0.1.1
+                     , code-page
 
   hs-source-dirs:      tests
   default-language:    Haskell2010
diff --git a/src/System/IO/CodePage.hs b/src/System/IO/CodePage.hs
--- a/src/System/IO/CodePage.hs
+++ b/src/System/IO/CodePage.hs
@@ -2,7 +2,7 @@
 
 {-|
 Module:      System.IO.CodePage
-Copyright:   (C) 2016 Ryan Scott
+Copyright:   (C) 2016-2017 Ryan Scott
 License:     BSD-style (see the file LICENSE)
 Maintainer:  Ryan Scott
 Stability:   Provisional
@@ -120,7 +120,7 @@
                     )
             | otherwise = id
         fixOutput
-            | setInput = bracket_
+            | setOutput = bracket_
                 (do
                     setConsoleOutputCP cp
                     hSetEncoding stdout expected
diff --git a/src/System/Win32/CodePage.hsc b/src/System/Win32/CodePage.hsc
--- a/src/System/Win32/CodePage.hsc
+++ b/src/System/Win32/CodePage.hsc
@@ -3,7 +3,7 @@
 
 {-|
 Module:      System.Win32.CodePage
-Copyright:   (C) 2016 Ryan Scott
+Copyright:   (C) 2016-2017 Ryan Scott
 License:     BSD-style (see the file LICENSE)
 Maintainer:  Ryan Scott
 Stability:   Provisional
diff --git a/tests/Tests.hs b/tests/Tests.hs
--- a/tests/Tests.hs
+++ b/tests/Tests.hs
@@ -1,6 +1,6 @@
 {-|
 Module:      Tests
-Copyright:   (C) 2016 Ryan Scott
+Copyright:   (C) 2016-2017 Ryan Scott
 License:     BSD-style (see the file LICENSE)
 Maintainer:  Ryan Scott
 Stability:   Provisional
