milena 0.5.0.1 → 0.5.0.2
raw patch · 3 files changed
+11/−9 lines, 3 filesdep ~lensdep ~transformersnew-uploaderPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: lens, transformers
API changes (from Hackage documentation)
- Network.Kafka.Protocol: FetchRR :: FetchRequest -> ReqResp (m FetchResponse)
- Network.Kafka.Protocol: MetadataRR :: MetadataRequest -> ReqResp (m MetadataResponse)
- Network.Kafka.Protocol: OffsetRR :: OffsetRequest -> ReqResp (m OffsetResponse)
- Network.Kafka.Protocol: ProduceRR :: ProduceRequest -> ReqResp (m ProduceResponse)
+ Network.Kafka.Protocol: [FetchRR] :: MonadIO m => FetchRequest -> ReqResp (m FetchResponse)
+ Network.Kafka.Protocol: [MetadataRR] :: MonadIO m => MetadataRequest -> ReqResp (m MetadataResponse)
+ Network.Kafka.Protocol: [OffsetRR] :: MonadIO m => OffsetRequest -> ReqResp (m OffsetResponse)
+ Network.Kafka.Protocol: [ProduceRR] :: MonadIO m => ProduceRequest -> ReqResp (m ProduceResponse)
Files
- Network/Kafka.hs +1/−1
- README.md +1/−1
- milena.cabal +9/−7
Network/Kafka.hs view
@@ -145,7 +145,7 @@ (addy :| []) addKafkaAddress :: KafkaAddress -> KafkaState -> KafkaState-addKafkaAddress = over stateAddresses . NE.nub .: cons+addKafkaAddress = over stateAddresses . NE.nub .: NE.cons where infixr 9 .: (.:) :: (c -> d) -> (a -> b -> c) -> a -> b -> d (.:) = (.).(.)
README.md view
@@ -3,7 +3,7 @@ A Kafka client for Haskell. -Supports Kafka 0.8.x+Supports Kafka 0.8.x and up (including 0.9.x). The protocol module is stable (the only changes will be to support changes in the Kafka protocol). The API is functional but subject to change.
milena.cabal view
@@ -4,7 +4,7 @@ -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change-version: 0.5.0.1+version: 0.5.0.2 synopsis: A Kafka client for Haskell. description: A Kafka client for Haskell.@@ -12,22 +12,24 @@ license: BSD3 license-file: LICENSE author: Tyler Holien-maintainer: tyler.holien@gmail.com+maintainer: adam@adamflott.com copyright: 2014, Tyler Holien category: Network build-type: Simple stability: alpha cabal-version: >=1.10 extra-source-files: README.md+bug-reports: https://github.com/adamflott/milena/issues+tested-with: GHC == 7.10.3, GHC == 8.0.1 source-repository head type: git- location: https://github.com/tylerholien/milena.git+ location: https://github.com/adamflott/milena.git source-repository this type: git- location: https://github.com/tylerholien/milena.git- tag: 0.5.0.1+ location: https://github.com/adamflott/milena.git+ tag: 0.5.0.2 library default-language: Haskell2010@@ -44,8 +46,8 @@ digest >=0.0.1.0 && <0.1, containers >=0.5 && <0.6, random >=1.0 && <1.2,- transformers >=0.3 && <0.5,- lens >=4.4 && <4.14,+ transformers >=0.3 && <0.6,+ lens >=4.4 && <4.16, resource-pool >=0.2.3.2 && <0.3, lifted-base >=0.2.3.6 && <0.3, murmur-hash >=0.1.0.8 && <0.2,