ngx-export 1.4.2 → 1.5.0
raw patch · 3 files changed
+7/−2 lines, 3 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Changelog.md +5/−0
- NgxExport.hs +1/−1
- ngx-export.cabal +1/−1
Changelog.md view
@@ -1,3 +1,8 @@+### 1.5.0++- Services are now terminated with `cancelWith ThreadKilled` because `cancel`+ throws `AsyncCancelled` starting from version *async-2.2*.+ ### 1.4.2 - Minor internal improvements (using tuple sections).
NgxExport.hs view
@@ -845,7 +845,7 @@ ngxExportTerminateTask :: StablePtr (Async ()) -> IO () ngxExportTerminateTask = deRefStablePtr >=>- cancel+ flip cancelWith ThreadKilled foreign export ccall ngxExportServiceHookInterrupt :: StablePtr (Async ()) -> IO ()
ngx-export.cabal view
@@ -1,5 +1,5 @@ name: ngx-export-version: 1.4.2+version: 1.5.0 synopsis: Helper module for Nginx haskell module description: Helper module for <http://github.com/lyokha/nginx-haskell-module Nginx haskell module>