ats-pkg 2.1.0.5 → 2.1.0.6
raw patch · 4 files changed
+7/−7 lines, 4 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- README.md +2/−2
- ats-pkg.cabal +1/−1
- src/Language/ATS/Package/Build.hs +1/−1
- stack.yaml +3/−3
README.md view
@@ -135,8 +135,8 @@ ### Calling Haskell from ATS You can see a demo [here](https://github.com/vmchale/fast-arithmetic).-Currently, there is not generic `Storable` instance for ATS, so the process is-a bit more involved than is ideal. `atspkg` has abilities similar to+Currently, there is not generic `Storable` instance that works with ATS, so the+process is a bit more involved than is ideal. `atspkg` has abilities similar to [hs2ats](http://hackage.haskell.org/package/hs2ats), which means that you can usually generate ATS types based on the Haskell types.
ats-pkg.cabal view
@@ -1,5 +1,5 @@ name: ats-pkg-version: 2.1.0.5+version: 2.1.0.6 synopsis: Package manager for ATS description: A collection of scripts to make building ATS projects easy. homepage: https://github.com/vmchale/atspkg#readme
src/Language/ATS/Package/Build.hs view
@@ -72,7 +72,7 @@ case man config of Just mt -> if not pa then pure () else do let mt' = manTarget mt- manDest = (home <> "/.local/share/man/man1/") <> mt'+ manDest = home <> "/.local/share/man/man1/" <> takeFileName mt' need [mt'] copyFile' mt' manDest Nothing -> pure ()
stack.yaml view
@@ -4,11 +4,11 @@ - '.' extra-deps: - shake-ext-2.1.0.1- - shake-ats-1.1.0.0+ - shake-ats-1.1.0.2 - composition-prelude-1.1.0.2- - language-ats-0.1.1.11+ - language-ats-0.1.1.15 - cli-setup-0.2.0.1- - hs2ats-0.2.0.1+ - hs2ats-0.2.0.3 flags: ats-pkg: development: false