diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -2,6 +2,9 @@
 
 ## WIP
 
+## [3.16.2] - 2022-02-07
+- Zero instance for ()
+
 ## [3.16.1] - 2022-02-05
 - Bump API version to v1.3.205
 
diff --git a/package.yaml b/package.yaml
--- a/package.yaml
+++ b/package.yaml
@@ -1,5 +1,5 @@
 name: vulkan
-version: "3.16.1"
+version: "3.16.2"
 synopsis: Bindings to the Vulkan graphics API.
 description: Please see [the readme](https://github.com/expipiplus1/vulkan/#readme)
 category: Graphics
diff --git a/src-manual/Vulkan/Zero.hs b/src-manual/Vulkan/Zero.hs
--- a/src-manual/Vulkan/Zero.hs
+++ b/src-manual/Vulkan/Zero.hs
@@ -33,6 +33,9 @@
 class Zero a where
   zero :: a
 
+instance Zero () where
+  zero = ()
+
 instance Zero Bool where
   zero = False
 
diff --git a/vulkan.cabal b/vulkan.cabal
--- a/vulkan.cabal
+++ b/vulkan.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           vulkan
-version:        3.16.1
+version:        3.16.2
 synopsis:       Bindings to the Vulkan graphics API.
 description:    Please see [the readme](https://github.com/expipiplus1/vulkan/#readme)
 category:       Graphics
