diff options
-rw-r--r-- | autoexporter.cabal | 18 | ||||
-rw-r--r-- | package.yaml | 2 | ||||
-rw-r--r-- | source/library/Autoexporter.hs | 7 | ||||
-rw-r--r-- | stack.yaml | 2 |
4 files changed, 21 insertions, 8 deletions
diff --git a/autoexporter.cabal b/autoexporter.cabal index 29c9686..b40849b 100644 --- a/autoexporter.cabal +++ b/autoexporter.cabal @@ -1,9 +1,11 @@ --- This file has been generated from package.yaml by hpack version 0.17.0. +-- This file has been generated from package.yaml by hpack version 0.20.0. -- -- see: https://github.com/sol/hpack +-- +-- hash: d0a4fb1809125a8d78716c9527daf9278b4b4b2b4a346f881925e5176b8d9c31 name: autoexporter -version: 1.1.2 +version: 1.1.3 synopsis: Automatically re-export modules. description: Autoexporter automatically re-exports modules. category: Utility @@ -30,12 +32,14 @@ library source/library ghc-options: -Wall build-depends: - base >=4.7 && <4.11 - , Cabal >=1.22 && <1.25 || >=2.0 && <2.1 + Cabal >=1.22 && <1.25 || >=2.0 && <2.1 + , base >=4.7 && <4.11 , directory >=1.2.5 && <1.4 , filepath >=1.3 && <1.5 exposed-modules: Autoexporter + other-modules: + Paths_autoexporter default-language: Haskell2010 executable autoexporter @@ -44,6 +48,8 @@ executable autoexporter source/executable ghc-options: -Wall build-depends: - base - , autoexporter + autoexporter + , base + other-modules: + Paths_autoexporter default-language: Haskell2010 diff --git a/package.yaml b/package.yaml index 370bf0a..2f01c17 100644 --- a/package.yaml +++ b/package.yaml @@ -27,4 +27,4 @@ license-file: LICENSE.markdown maintainer: Taylor Fausak name: autoexporter synopsis: Automatically re-export modules. -version: '1.1.2' +version: '1.1.3' diff --git a/source/library/Autoexporter.hs b/source/library/Autoexporter.hs index 7353928..b3774d2 100644 --- a/source/library/Autoexporter.hs +++ b/source/library/Autoexporter.hs @@ -1,3 +1,10 @@ +-- | This package isn't really meant to be used as a library. It's typically +-- used as a GHC preprocessor, like so: +-- +-- > {-# OPTIONS_GHC -F -pgmF autoexporter #-} +-- +-- For more information, please see the README on GitHub: +-- <https://github.com/tfausak/autoexporter#readme>. module Autoexporter where import qualified Data.List as List @@ -1 +1 @@ -resolver: lts-8.0 +resolver: lts-10.0 |