diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
 # Changelog
 
+## [0.2.0.3] - 2022-09-25
+
+### Changed
+
+* Compatibility with `time 1.11`
+
 ## [0.2.0.2] - 2022-09-24
 
 ### Changed
diff --git a/fuzzy-time.cabal b/fuzzy-time.cabal
--- a/fuzzy-time.cabal
+++ b/fuzzy-time.cabal
@@ -5,13 +5,13 @@
 -- see: https://github.com/sol/hpack
 
 name:           fuzzy-time
-version:        0.2.0.2
+version:        0.2.0.3
 description:    Fuzzy time types, parsing and resolution
 category:       Time
 homepage:       https://github.com/NorfairKing/fuzzy-time
 author:         Tom Sydney Kerckhove
 maintainer:     syd@cs-syd.eu
-copyright:      Copyright: (c) 2017-2021 Tom Sydney Kerckhove
+copyright:      Copyright: (c) 2017-2022 Tom Sydney Kerckhove
 license:        MIT
 license-file:   LICENSE
 build-type:     Simple
diff --git a/src/Data/FuzzyTime/Types.hs b/src/Data/FuzzyTime/Types.hs
--- a/src/Data/FuzzyTime/Types.hs
+++ b/src/Data/FuzzyTime/Types.hs
@@ -1,3 +1,4 @@
+{-# LANGUAGE CPP #-}
 {-# LANGUAGE DeriveGeneric #-}
 {-# LANGUAGE StandaloneDeriving #-}
 {-# OPTIONS_GHC -fno-warn-orphans #-}
@@ -143,7 +144,9 @@
 
 deriving instance Generic DayOfWeek
 
+#if !MIN_VERSION_time(1,11,1)
 instance NFData DayOfWeek
+#endif
 
 dayOfTheWeekNum :: DayOfWeek -> Int
 dayOfTheWeekNum = fromEnum
