irc-dcc 2.0.0 → 2.0.1
raw patch · 3 files changed
+7/−4 lines, 3 filesdep −errorsdep ~binarydep ~io-streamsdep ~networkPVP ok
version bump matches the API change (PVP)
Dependencies removed: errors
Dependency ranges changed: binary, io-streams, network, path, tasty, tasty-quickcheck
API changes (from Hackage documentation)
Files
- CHANGELOG.md +3/−0
- irc-dcc.cabal +3/−3
- src/Network/IRC/DCC/Client/FileTransfer.hs +1/−1
+ CHANGELOG.md view
@@ -0,0 +1,3 @@+# 2.0.1+* Remove unused `errors` package from dependencies+* Relax upper bounds for package `binary`
irc-dcc.cabal view
@@ -1,5 +1,5 @@ name: irc-dcc-version: 2.0.0+version: 2.0.1 synopsis: A DCC message parsing and helper library for IRC clients description: DCC (Direct Client-to-Client) is an IRC sub-protocol for establishing and maintaining direct connections to@@ -9,6 +9,7 @@ more details. license: MIT license-file: LICENSE+extra-source-files: CHANGELOG.md homepage: https://github.com/JanGe/irc-dcc bug-reports: https://github.com/JanGe/irc-dcc/issues author: Jan Gerlinger@@ -28,9 +29,8 @@ -- other-extensions: build-depends: base >= 4.8 && < 5 , attoparsec >= 0.13.0.1 && < 0.14- , binary >= 0.7.5.0 && < 0.9+ , binary >= 0.7.5.0 && < 0.10 , bytestring >= 0.10.6.0 && < 0.11- , errors >= 2.1.2 && < 2.2 , io-streams >= 1.3.5.0 && < 1.4 , iproute >= 1.7.0 && < 1.8 , irc-ctcp >= 0.1.3.0 && < 0.2
src/Network/IRC/DCC/Client/FileTransfer.hs view
@@ -101,7 +101,7 @@ => P.Path P.Rel P.File -> TransferType -> (FileOffset -> m ())- -- ^ Callback when a chunk of data was transfered+ -- ^ Callback when a chunk of data was transfered -> Socket -> m () streamToFile name tt onChunk =