shake-futhark 0.2.0.2 → 0.2.0.3
raw patch · 4 files changed
+9/−5 lines, 4 filesdep ~futharkPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: futhark
API changes (from Hackage documentation)
Files
- CHANGELOG.md +4/−0
- LICENSE +1/−1
- shake-futhark.cabal +3/−3
- src/Development/Shake/Futhark.hs +1/−1
CHANGELOG.md view
@@ -1,5 +1,9 @@ # shake-futhark +## 0.2.0.3++ * Compatibility with futhark >=0.25.10+ ## 0.2.0.2 * Compatibility with futhark >=0.22.2
LICENSE view
@@ -1,4 +1,4 @@-Copyright Vanessa McHale (c) 2020, 2022+Copyright Vanessa McHale (c) 2020 Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
shake-futhark.cabal view
@@ -1,9 +1,9 @@ cabal-version: 1.18 name: shake-futhark-version: 0.2.0.2+version: 0.2.0.3 license: BSD3 license-file: LICENSE-copyright: Copyright: (c) 2020, 2022 Vanessa McHale+copyright: Copyright: (c) 2020 Vanessa McHale maintainer: vamchale@gmail.com author: Vanessa McHale synopsis: Dependency tracking for Futhark@@ -27,7 +27,7 @@ ghc-options: -Wall build-depends: base >=4.3 && <5,- futhark >=0.22.2,+ futhark >=0.25.10, shake, text, filepath,
src/Development/Shake/Futhark.hs view
@@ -50,7 +50,7 @@ extractFromDecBase (ModDec (ModBind _ _ _ m _ _)) = extractFromModExpBase m extractFromDecBase ValDec{} = [] extractFromDecBase TypeDec{} = []-extractFromDecBase SigDec{} = []+extractFromDecBase ModTypeDec{} = [] extractFromModExpBase :: ModExpBase f vn -> [FilePath] extractFromModExpBase (ModParens m _) = extractFromModExpBase m