packages feed

autoexporter 1.1.2 → 1.1.3

raw patch · 4 files changed

+21/−8 lines, 4 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

autoexporter.cabal view
@@ -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 @@       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 @@       source/executable   ghc-options: -Wall   build-depends:-      base-    , autoexporter+      autoexporter+    , base+  other-modules:+      Paths_autoexporter   default-language: Haskell2010
package.yaml view
@@ -27,4 +27,4 @@ maintainer: Taylor Fausak name: autoexporter synopsis: Automatically re-export modules.-version: '1.1.2'+version: '1.1.3'
source/library/Autoexporter.hs view
@@ -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
stack.yaml view
@@ -1,1 +1,1 @@-resolver: lts-8.0+resolver: lts-10.0