packages feed

faktory 1.0.3.0 → 1.0.3.1

raw patch · 3 files changed

+22/−14 lines, 3 filesPVP: minor bump suggested

API additions: PVP suggests at least a minor version bump

API changes (from Hackage documentation)

+ Faktory.Ent.Batch: CustomBatchId :: BatchId -> CustomBatchId
+ Faktory.Ent.Batch: [bid] :: CustomBatchId -> BatchId
+ Faktory.Ent.Batch: commitBatch :: Producer -> BatchId -> IO ()
+ Faktory.Ent.Batch: newBatch :: ToJSON arg => Producer -> BatchOptions arg -> IO BatchId
+ Faktory.Ent.Batch: newtype CustomBatchId

Files

CHANGELOG.md view
@@ -1,6 +1,10 @@-## [*Unreleased*](https://github.com/frontrowed/faktory_worker_haskell/compare/v1.0.3.0...main)+## [*Unreleased*](https://github.com/frontrowed/faktory_worker_haskell/compare/v1.0.3.1...main)  None++## [v1.0.3.1](https://github.com/frontrowed/faktory_worker_haskell/compare/v1.0.3.0...v1.0.3.1)++- Export lower-level `BATCH` functions  ## [v1.0.3.0](https://github.com/frontrowed/faktory_worker_haskell/compare/v1.0.2.3...v1.0.3.0) 
faktory.cabal view
@@ -1,6 +1,6 @@ cabal-version:   1.18 name:            faktory-version:         1.0.3.0+version:         1.0.3.1 license:         MIT license-file:    LICENSE copyright:       2018 Freckle Education
library/Faktory/Ent/Batch.hs view
@@ -25,19 +25,23 @@ -- Jobs to the Batch. PRs welcome. -- module Faktory.Ent.Batch-    (-    -- * Options-      BatchOptions-    , description-    , complete-    , success+  (+  -- * Options+    BatchOptions+  , description+  , complete+  , success -    -- * Running-    , runBatch-    , Batch-    , batchPerform-    )-where+  -- * Running+  , runBatch+  , Batch+  , batchPerform++  -- * Low-level+  , CustomBatchId(..)+  , newBatch+  , commitBatch+  ) where  import Faktory.Prelude