postmark-streams 0.1.0.0 → 0.1.0.1
raw patch · 2 files changed
+15/−11 lines, 2 filesdep ~aesondep ~basedep ~binaryPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: aeson, base, binary, io-streams, time
API changes (from Hackage documentation)
Files
- ChangeLog.md +6/−1
- postmark-streams.cabal +9/−10
ChangeLog.md view
@@ -1,5 +1,10 @@ # Revision history for postmark-streams -## 0.1.0.0 -- YYYY-mm-dd+## 0.1.0.0 -- 2017-02-22 * First version. Released on an unsuspecting world.++## 0.1.0.1 -- 2017-11-26++* A number of version bumps+* source repository information corrected
postmark-streams.cabal view
@@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: postmark-streams-version: 0.1.0.0+version: 0.1.0.1 synopsis: Send email via Postmark using io-streams. description: Send email via Postmark using io-streams.@@ -19,11 +19,11 @@ source-repository head type: git- location: git://github.com/jonpetterbergman/pidfile.git+ location: git://github.com/jonpetterbergman/postmark-streams.git source-repository this type: git- location: git://github.com/jonpetterbergman/pidfile.git- tag: v0.1.0.0+ location: git://github.com/jonpetterbergman/postmark-streams.git+ tag: v0.1.0.1 @@ -31,17 +31,16 @@ exposed-modules: Postmark, Postmark.Request, Postmark.Response--- other-modules: Postmark.Request, Postmark.Response other-extensions: OverloadedStrings- build-depends: base >=4.9 && <4.10,- aeson >=1.1 && <1.2,+ build-depends: base >=4.9 && <4.11,+ aeson >=1.1 && <1.3, attoparsec >=0.13 && <0.14,- binary >=0.8 && <0.9,+ binary >=0.8 && <0.10, bytestring >=0.10 && <0.11, http-streams >=0.8 && <0.9,- io-streams >=1.3 && <1.4,+ io-streams >=1.3 && <1.6, text >=1.2 && <1.3, base64-bytestring >=1.0 && <1.1,- time >=1.6 && <1.7+ time >=1.6 && <1.9 hs-source-dirs: src default-language: Haskell2010