diff --git a/CHANGELOG.md b/CHANGELOG.md
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
 # Changelog
 
+## [1.0.0.1] - 2022-08-30
+
+### Added
+
+* Shrinking benchmarks
+
 ## [1.0.0.0] - 2021-11-20
 
 ### Changed
diff --git a/bench/Main.hs b/bench/Main.hs
--- a/bench/Main.hs
+++ b/bench/Main.hs
@@ -53,6 +53,14 @@
 main :: IO ()
 main =
   defaultMain
-    [ genValidBench @ThingId,
-      genValidBench @(Entity Thing)
+    [ bgroup
+        "generators"
+        [ genValidBench @ThingId,
+          genValidBench @(Entity Thing)
+        ],
+      bgroup
+        "shrinkers"
+        [ shrinkValidBench @ThingId,
+          shrinkValidBench @(Entity Thing)
+        ]
     ]
diff --git a/genvalidity-persistent.cabal b/genvalidity-persistent.cabal
--- a/genvalidity-persistent.cabal
+++ b/genvalidity-persistent.cabal
@@ -1,18 +1,18 @@
 cabal-version: 1.12
 
--- This file has been generated from package.yaml by hpack version 0.34.4.
+-- This file has been generated from package.yaml by hpack version 0.34.7.
 --
 -- see: https://github.com/sol/hpack
 
 name:           genvalidity-persistent
-version:        1.0.0.0
+version:        1.0.0.1
 synopsis:       GenValidity support for Persistent
 category:       Testing
 homepage:       https://github.com/NorfairKing/validity#readme
 bug-reports:    https://github.com/NorfairKing/validity/issues
 author:         Tom Sydney Kerckhove
 maintainer:     syd@cs-syd.eu
-copyright:      Copyright: (c) 2016-2021 Tom Sydney Kerckhove
+copyright:      Copyright: (c) 2016-2022 Tom Sydney Kerckhove
 license:        MIT
 license-file:   LICENSE
 build-type:     Simple
