vulkan 3.16.1 → 3.16.2
raw patch · 4 files changed
+8/−2 lines, 4 files
Files
- changelog.md +3/−0
- package.yaml +1/−1
- src-manual/Vulkan/Zero.hs +3/−0
- vulkan.cabal +1/−1
changelog.md view
@@ -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
package.yaml view
@@ -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
src-manual/Vulkan/Zero.hs view
@@ -33,6 +33,9 @@ class Zero a where zero :: a +instance Zero () where+ zero = ()+ instance Zero Bool where zero = False
vulkan.cabal view
@@ -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