diff --git a/ChangeLog.md b/ChangeLog.md
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,5 +1,9 @@
 # Changelog for simple-media-timestamp
 
+## v0.2.0.0
+
+* Use non-plural fields.
+
 ## v0.1.0.0
 
 * Add `Time` and `Range` types.
diff --git a/README.md b/README.md
--- a/README.md
+++ b/README.md
@@ -1,1 +1,3 @@
 # simple-media-timestamp
+
+A simple timestamp type.
diff --git a/simple-media-timestamp.cabal b/simple-media-timestamp.cabal
--- a/simple-media-timestamp.cabal
+++ b/simple-media-timestamp.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           simple-media-timestamp
-version:        0.1.0.0
+version:        0.2.0.0
 synopsis:       A very simple timestamp.
 category:       Media
 author:         Daniel Firth
diff --git a/src/Media/Timestamp.hs b/src/Media/Timestamp.hs
--- a/src/Media/Timestamp.hs
+++ b/src/Media/Timestamp.hs
@@ -12,12 +12,12 @@
 
 -- | Timestamp data type.
 --
--- @since 0.1.0.0
+-- @since 0.2.0.0
 data Time = Time
   { hour :: Int,
-    minutes :: Int,
-    seconds :: Int,
-    milliseconds :: Int
+    minute :: Int,
+    second :: Int,
+    millisecond :: Int
   }
   deriving (Eq, Ord, Show)
 
