diff --git a/Setup.hs b/Setup.hs
new file mode 100644
--- /dev/null
+++ b/Setup.hs
@@ -0,0 +1,2 @@
+import Distribution.Simple
+main = defaultMain
diff --git a/changelog.md b/changelog.md
--- a/changelog.md
+++ b/changelog.md
@@ -2,6 +2,10 @@
 
 ## WIP
 
+## [0.1.2.1] - 2020-11-01
+
+- Raise bound on base
+
 ## [0.1.2] - 2020-09-27
   - Initial release
     - Shader QuasiQuoters
diff --git a/package.yaml b/package.yaml
new file mode 100644
--- /dev/null
+++ b/package.yaml
@@ -0,0 +1,59 @@
+name: vulkan-utils
+version: "0.1.2.1"
+synopsis: Utils for the vulkan package
+category: Graphics
+maintainer: Joe Hermaszewski <live.long.and.prosper@monoid.al>
+github: expipiplus1/vulkan
+extra-source-files:
+  - readme.md
+  - changelog.md
+  - package.yaml
+  - src/Vulkan/Utils/gl_enums.h
+
+library:
+  source-dirs: src
+  c-sources: cbits/DebugCallback.c
+  dependencies:
+    - base <5
+    - bytestring
+    - extra
+    - file-embed
+    - filepath
+    - template-haskell
+    - temporary
+    - typed-process
+    - vulkan
+
+default-extensions:
+  - AllowAmbiguousTypes
+  - CPP
+  - DataKinds
+  - DefaultSignatures
+  - DeriveAnyClass
+  - DerivingStrategies
+  - DuplicateRecordFields
+  - FlexibleContexts
+  - FlexibleInstances
+  - GADTs
+  - GeneralizedNewtypeDeriving
+  - InstanceSigs
+  - LambdaCase
+  - MagicHash
+  - NoMonomorphismRestriction
+  - OverloadedStrings
+  - PartialTypeSignatures
+  - PatternSynonyms
+  - PolyKinds
+  - QuantifiedConstraints
+  - RankNTypes
+  - RecordWildCards
+  - RoleAnnotations
+  - ScopedTypeVariables
+  - StandaloneDeriving
+  - Strict
+  - TypeApplications
+  - TypeFamilyDependencies
+  - TypeOperators
+  - TypeSynonymInstances
+  - UndecidableInstances
+  - ViewPatterns
diff --git a/vulkan-utils.cabal b/vulkan-utils.cabal
--- a/vulkan-utils.cabal
+++ b/vulkan-utils.cabal
@@ -4,10 +4,10 @@
 --
 -- see: https://github.com/sol/hpack
 --
--- hash: 25880478bf00adf1eff57812a7ac503083c38df26cb9334d47f921f42a5d8e18
+-- hash: 02cd419c730d93f7db6f291f1fac9c67d943c8c7a6d2be902231c4c693a58d51
 
 name:           vulkan-utils
-version:        0.1.2
+version:        0.1.2.1
 synopsis:       Utils for the vulkan package
 category:       Graphics
 homepage:       https://github.com/expipiplus1/vulkan#readme
@@ -19,6 +19,7 @@
 extra-source-files:
     readme.md
     changelog.md
+    package.yaml
     src/Vulkan/Utils/gl_enums.h
 
 source-repository head
@@ -38,7 +39,7 @@
   c-sources:
       cbits/DebugCallback.c
   build-depends:
-      base <4.15
+      base <5
     , bytestring
     , extra
     , file-embed
