packages feed

vulkan-utils 0.5.4 → 0.5.5

raw patch · 4 files changed

+9/−5 lines, 4 filesdep ~vulkan

Dependency ranges changed: vulkan

Files

changelog.md view
@@ -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` 
package.yaml view
@@ -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:
src/Vulkan/Utils/Requirements.hs view
@@ -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
vulkan-utils.cabal view
@@ -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