diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
 # Changelog for chassis
 
-## 0.0.1.0
+## v0.0.2.0
+
+* Export UTCTime.
+
+## v0.0.1.0
 
 * Experimental prelude with many algebraic constructs and control structures, and polykinds.
diff --git a/chassis.cabal b/chassis.cabal
--- a/chassis.cabal
+++ b/chassis.cabal
@@ -5,13 +5,13 @@
 -- see: https://github.com/sol/hpack
 
 name:           chassis
-version:        0.0.1.0
+version:        0.0.2.0
 synopsis:       Prelude with algebraic constructs and polykinds on.
 category:       Prelude
 author:         Daniel Firth
 maintainer:     dan.firth@homotopic.tech
 copyright:      2020 Daniel Firth
-license:        BSD3
+license:        MIT
 license-file:   LICENSE
 build-type:     Simple
 extra-source-files:
@@ -45,5 +45,6 @@
     , profunctors
     , rio
     , text
+    , time
     , vinyl
   default-language: Haskell2010
diff --git a/src/Chassis.hs b/src/Chassis.hs
--- a/src/Chassis.hs
+++ b/src/Chassis.hs
@@ -49,6 +49,7 @@
 , Compose(..)
 , onCompose
 , Generic
+, UTCTime
 , Path
 , Rel
 , Abs
@@ -120,3 +121,4 @@
 import Data.Profunctor
 import Data.Either
 import Composite.CoRecord
+import Data.Time (UTCTime)
