packages feed

shake-ats 1.10.2.2 → 1.10.2.3

raw patch · 3 files changed

+30/−25 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

CHANGELOG.md view
@@ -1,5 +1,9 @@ # shake-ats +## 1.10.2.3++  * `cleanATS` is now more precise+ ## 1.10.2.2    * `genLinks` calls `traced` for better profiling
shake-ats.cabal view
@@ -1,43 +1,44 @@-cabal-version: 1.18-name: shake-ats-version: 1.10.2.2-license: BSD3-license-file: LICENSE-copyright: Copyright: (c) 2018-2019 Vanessa McHale-maintainer: vamchale@gmail.com-author: Vanessa McHale-tested-with: ghc ==8.4.4 ghc ==8.6.5-synopsis: Utilities for building ATS projects with shake+cabal-version:   1.18+name:            shake-ats+version:         1.10.2.3+license:         BSD3+license-file:    LICENSE+copyright:       Copyright: (c) 2018-2019 Vanessa McHale+maintainer:      vamchale@gmail.com+author:          Vanessa McHale+tested-with:     ghc ==8.4.4 ghc ==8.6.5+synopsis:        Utilities for building ATS projects with shake description:     Various helper functions for building [ATS](http://www.ats-lang.org/) with the [shake](http://shakebuild.com/) library-category: Development, Build, ATS, Shake-build-type: Simple-extra-doc-files: README.md-                 CHANGELOG.md +category:        Development, Build, ATS, Shake+build-type:      Simple+extra-doc-files:+    README.md+    CHANGELOG.md+ source-repository head-    type: git+    type:     git     location: git@github.com:vmchale/atspkg.git-    subdir: shake-ats+    subdir:   shake-ats  flag development-    description:-        Enable `-Werror`-    default: False-    manual: True+    description: Enable `-Werror`+    default:     False+    manual:      True  library-    exposed-modules:-        Development.Shake.ATS-    hs-source-dirs: src+    exposed-modules:  Development.Shake.ATS+    hs-source-dirs:   src     other-modules:         Development.Shake.ATS.Type         Development.Shake.ATS.Rules         Development.Shake.ATS.Environment         Development.Shake.ATS.Generate+     default-language: Haskell2010     other-extensions: RecordWildCards DeriveGeneric DeriveAnyClass-    ghc-options: -Wall+    ghc-options:      -Wall     build-depends:         base >=4.9 && <5,         language-ats -any,
src/Development/Shake/ATS/Rules.hs view
@@ -102,4 +102,4 @@ cleanATS =     zipWithM_ removeFilesAfter         [".", ".atspkg", "ats-deps"]-        [["//*.c", "//*_lats.dats", "//tags"], ["//*"], ["//*"]]+        [["//*_dats.c", "//*_sats.c", "//*_lats.dats", "//tags"], ["//*"], ["//*"]]