diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
 # Revision history for lager
 
+## 0.1.0.1 -- 3-26-2026
+
+* Add instances to `Msg`
+* Fixup package
+
 ## 0.1.0.0 -- 3-26-2026
 
 * First version. Released on an unsuspecting world.
diff --git a/lager.cabal b/lager.cabal
--- a/lager.cabal
+++ b/lager.cabal
@@ -1,13 +1,13 @@
 cabal-version:      3.0
 name:               lager
-version:            0.1.0.0
+version:            0.1.0.1
 synopsis:           Concurrent logging
 license:            MIT
 license-file:       LICENSE
 author:             dopamane
 maintainer:         dwc1295@gmail.com
 copyright:          David Cox
-category:           Logger
+category:           concurrency, logging, stm
 build-type:         Simple
 extra-doc-files:    CHANGELOG.md
                     README.md
@@ -22,7 +22,7 @@
   ghc-options:      -Wall -O2
   exposed-modules:  Lager
   build-depends:    async
-                  , base < 5.0
+                  , base < 5
                   , prettyprinter
                   , prettyprinter-ansi-terminal
                   , stm
diff --git a/lib/Lager.hs b/lib/Lager.hs
--- a/lib/Lager.hs
+++ b/lib/Lager.hs
@@ -71,7 +71,7 @@
   { lvl :: Level
   , txt :: Text -- ^ message
   , src :: Text -- ^ logger source
-  }
+  } deriving (Eq, Generic, Read, Show)
 
 -- | Acquire a new handle
 newLager :: Text -> [Target] -> IO Lager
