packages feed

hs2ats 0.3.0.1 → 0.3.0.2

raw patch · 2 files changed

+7/−3 lines, 2 filesdep +microlensdep −lensPVP ok

version bump matches the API change (PVP)

Dependencies added: microlens

Dependencies removed: lens

API changes (from Hackage documentation)

Files

hs2ats.cabal view
@@ -1,6 +1,6 @@ cabal-version: 1.18 name: hs2ats-version: 0.3.0.1+version: 0.3.0.2 license: BSD3 license-file: LICENSE copyright: Copyright: (c) 2018 Vanessa McHale@@ -37,13 +37,15 @@     other-modules:         Language.ATS.Generate.Error     default-language: Haskell2010+    other-extensions: DeriveAnyClass DeriveGeneric OverloadedStrings+                      StandaloneDeriving PatternSynonyms     ghc-options: -Wall     build-depends:         base >=4.7 && <5,         haskell-src-exts -any,         language-ats >=1.0.0.0,         casing -any,-        lens -any,+        microlens -any,         ansi-wl-pprint -any,         composition-prelude -any,         deepseq -any,@@ -59,6 +61,8 @@     main-is: Main.hs     hs-source-dirs: app     default-language: Haskell2010+    other-extensions: DataKinds DeriveAnyClass DeriveGeneric+                      OverloadedStrings TypeOperators     ghc-options: -threaded -rtsopts -with-rtsopts=-N -Wall     build-depends:         base -any,
src/Language/ATS/Generate.hs view
@@ -10,7 +10,6 @@     ) where  import           Control.Arrow-import           Control.Lens                 (over, _head) import           Data.Bool                    (bool) import           Data.Char                    (toUpper) import           Data.Either                  (lefts, rights)@@ -20,6 +19,7 @@ import           Language.Haskell.Exts import           Language.Haskell.Exts.Syntax as HS import           Language.Preprocessor.Cpphs  (defaultCpphsOptions, runCpphs)+import           Lens.Micro                   (over, _head) import           Text.Casing                  (quietSnake)  convertConventions :: String -> String