code-page 0.2 → 0.2.1
raw patch · 4 files changed
+9/−4 lines, 4 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- CHANGELOG.md +3/−0
- README.md +1/−1
- code-page.cabal +4/−2
- src/System/Win32/CodePage.hsc +1/−1
CHANGELOG.md view
@@ -1,3 +1,6 @@+### 0.2.1 [2021.02.06]+* Allow building with `base-4.15` (GHC 9.0) or later on Windows.+ ## 0.2 [2018.11.13] * Rename the `withCodePageVerbosity` function to `withCodePageOptions` to reflect the fact that its first argument is now an `Options` data type
README.md view
@@ -3,7 +3,7 @@ [](http://packdeps.haskellers.com/reverse/code-page) [][Haskell.org] [][tl;dr Legal: BSD3]-[](https://travis-ci.org/RyanGlScott/code-page)+[](https://github.com/RyanGlScott/code-page/actions?query=workflow%3AHaskell-CI) [](https://ci.appveyor.com/project/RyanGlScott/code-page) [Hackage: code-page]:
code-page.cabal view
@@ -1,5 +1,5 @@ name: code-page-version: 0.2+version: 0.2.1 synopsis: Windows code page library for Haskell description: This library provides two modules: .@@ -31,7 +31,9 @@ , GHC == 8.0.2 , GHC == 8.2.2 , GHC == 8.4.4- , GHC == 8.6.2+ , GHC == 8.6.5+ , GHC == 8.8.4+ , GHC == 8.10.2 source-repository head type: git
src/System/Win32/CodePage.hsc view
@@ -46,7 +46,7 @@ import Foreign.C.String import Foreign.Ptr -import GHC.IO.Encoding.CodePage+import GHC.IO.Encoding.CodePage (codePageEncoding, mkCodePageEncoding) import System.Win32.Console import System.Win32.NLS