autoexporter 1.1.14 → 1.1.15
raw patch · 3 files changed
+8/−7 lines, 3 filesdep ~basePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base
API changes (from Hackage documentation)
Files
- autoexporter.cabal +4/−4
- library/Autoexporter.hs +2/−1
- package.yaml +2/−2
autoexporter.cabal view
@@ -4,10 +4,10 @@ -- -- see: https://github.com/sol/hpack ----- hash: 990227a36c366ea2b4368939a62db962423f1fb81806ed9a7731911a5d75b1cb+-- hash: 4fa32db9ef6ee238c2d30fcffa7e48b8dcea993f0fb5d7959896c35631d81538 name: autoexporter-version: 1.1.14+version: 1.1.15 synopsis: Automatically re-export modules. description: Autoexporter automatically re-exports modules. category: Utility@@ -37,7 +37,7 @@ ghc-options: -Weverything -Wno-implicit-prelude -Wno-safe -Wno-unsafe build-depends: Cabal >=1.24.0 && <1.25 || >=2.0.1 && <2.5 || >=3.0.0 && <3.1- , base >=4.9.0 && <4.13+ , base >=4.9.0 && <4.14 , directory >=1.2.6 && <1.4 , filepath >=1.4.1 && <1.5 default-language: Haskell2010@@ -52,7 +52,7 @@ build-depends: Cabal >=1.24.0 && <1.25 || >=2.0.1 && <2.5 || >=3.0.0 && <3.1 , autoexporter- , base >=4.9.0 && <4.13+ , base >=4.9.0 && <4.14 , directory >=1.2.6 && <1.4 , filepath >=1.4.1 && <1.5 default-language: Haskell2010
library/Autoexporter.hs view
@@ -105,7 +105,8 @@ renderModule :: String -> [String] -> String renderModule name modules = unlines'- [ unwords ["module", name, "("]+ [ "{-# OPTIONS_GHC -fno-warn-dodgy-exports -fno-warn-unused-imports #-}"+ , unwords ["module", name, "("] , unlines' (map renderExport modules) , ") where" , unlines' (map renderImport modules)
package.yaml view
@@ -1,5 +1,5 @@ name: autoexporter-version: 1.1.14+version: 1.1.15 category: Utility description: Autoexporter automatically re-exports modules.@@ -15,7 +15,7 @@ synopsis: Automatically re-export modules. dependencies:- base: '>= 4.9.0 && < 4.13'+ base: '>= 4.9.0 && < 4.14' Cabal: '>= 1.24.0 && < 1.25 || >= 2.0.1 && < 2.5 || >= 3.0.0 && < 3.1' directory: '>= 1.2.6 && < 1.4' filepath: '>= 1.4.1 && < 1.5'