diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -2,6 +2,10 @@
 
 ## WIP
 
+## [0.5.5] - 2022-01-14
+- Relax bounds on `vulkan`
+- Squash warnings
+
 ## [0.5.4] - 2021-11-25
 - Relax bounds on `vulkan`
 
diff --git a/package.yaml b/package.yaml
--- a/package.yaml
+++ b/package.yaml
@@ -1,5 +1,5 @@
 name: vulkan-utils
-version: "0.5.4"
+version: "0.5.5"
 synopsis: Utils for the vulkan package
 category: Graphics
 maintainer: Ellie Hermaszewska <live.long.and.prosper@monoid.al>
@@ -39,7 +39,7 @@
   - typed-process
   - unordered-containers
   - vector
-  - vulkan >= 3.6.14 && < 3.15
+  - vulkan >= 3.6.14 && < 3.16
 
 tests:
   doctests:
diff --git a/src/Vulkan/Utils/Requirements.hs b/src/Vulkan/Utils/Requirements.hs
--- a/src/Vulkan/Utils/Requirements.hs
+++ b/src/Vulkan/Utils/Requirements.hs
@@ -623,7 +623,7 @@
 
 showVersion :: Word32 -> String
 showVersion ver = intercalate "." [show ma, show mi, show pa]
-  where MAKE_VERSION ma mi pa = ver
+  where MAKE_API_VERSION ma mi pa = ver
 
 data Has c a where
   Has ::c a => Has c a
diff --git a/vulkan-utils.cabal b/vulkan-utils.cabal
--- a/vulkan-utils.cabal
+++ b/vulkan-utils.cabal
@@ -5,7 +5,7 @@
 -- see: https://github.com/sol/hpack
 
 name:           vulkan-utils
-version:        0.5.4
+version:        0.5.5
 synopsis:       Utils for the vulkan package
 category:       Graphics
 homepage:       https://github.com/expipiplus1/vulkan#readme
@@ -113,7 +113,7 @@
     , typed-process
     , unordered-containers
     , vector
-    , vulkan >=3.6.14 && <3.15
+    , vulkan >=3.6.14 && <3.16
   default-language: Haskell2010
 
 test-suite doctests
