diff --git a/changes.txt b/changes.txt
--- a/changes.txt
+++ b/changes.txt
@@ -1,3 +1,9 @@
+0.1.1.0
+-------
+
+- Added Generic instance to TimedRes.
+- Released on Thu 15 Mar 2018 00:27:26 CET.
+
 0.1.0.2
 -------
 
diff --git a/src/Control/Timer/Tick.hs b/src/Control/Timer/Tick.hs
--- a/src/Control/Timer/Tick.hs
+++ b/src/Control/Timer/Tick.hs
@@ -1,3 +1,4 @@
+{-# LANGUAGE DeriveGeneric #-}
 --------------------------------------------------------------------------------
 -- |
 -- Module      :  Control.Timer.Tick
@@ -34,6 +35,8 @@
 
        where
 
+import GHC.Generics (Generic)
+
 -----------
 -- TYPES --
 -----------
@@ -66,7 +69,7 @@
                              tCurrTick :: Integer,
                              tExpired  :: Bool
                            }
-        deriving (Show, Eq)
+        deriving (Show, Eq, Generic)
 
 type TimerStep a = (Integer, a)
 
diff --git a/timers-tick.cabal b/timers-tick.cabal
--- a/timers-tick.cabal
+++ b/timers-tick.cabal
@@ -1,5 +1,5 @@
 name:                timers-tick
-version:             0.1.0.2
+version:             0.1.1.0
 synopsis:            tick based timers
 description:         Tick-based timers and utilities, for games and
                      discrete-time programs.
