packages feed

inline-c 0.9.1.5 → 0.9.1.6

raw patch · 3 files changed

+3/−2 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

changelog.md view
@@ -1,3 +1,4 @@+- 0.9.1.6: Fix mistakenly unsafe call, see issue #137. - 0.9.1.5: Support multi-token types in C++ template arguments, see issue #125 and PR #126. - 0.9.1.4: Support GHC 8.10, including better C++ flags handling, see PR #121. - 0.9.1.3: Work around spurious test failures, see PR #118.
inline-c.cabal view
@@ -1,5 +1,5 @@ name:                inline-c-version:             0.9.1.5+version:             0.9.1.6 synopsis:            Write Haskell source files including C code inline. No FFI required. description:         See <https://github.com/fpco/inline-c/blob/master/README.md>. license:             MIT
src/Language/C/Inline/Interruptible.hs view
@@ -49,4 +49,4 @@  -- | C code blocks (i.e. statements). block :: TH.QuasiQuoter-block = genericQuote IO $ inlineItems TH.Unsafe False Nothing+block = genericQuote IO $ inlineItems TH.Interruptible False Nothing