diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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
diff --git a/LICENSE b/LICENSE
--- a/LICENSE
+++ b/LICENSE
@@ -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:
 
diff --git a/shake-futhark.cabal b/shake-futhark.cabal
--- a/shake-futhark.cabal
+++ b/shake-futhark.cabal
@@ -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,
diff --git a/src/Development/Shake/Futhark.hs b/src/Development/Shake/Futhark.hs
--- a/src/Development/Shake/Futhark.hs
+++ b/src/Development/Shake/Futhark.hs
@@ -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
