packages feed

nanomsg-haskell 0.2.3 → 0.2.4

raw patch · 3 files changed

+11/−8 lines, 3 filesdep ~binaryPVP: major bump suggested

API removals or changes: PVP suggests a major version bump

Dependency ranges changed: binary

API changes (from Hackage documentation)

- Nanomsg: instance GHC.Exception.Exception Nanomsg.NNException
+ Nanomsg: instance GHC.Exception.Type.Exception Nanomsg.NNException
- Nanomsg: socket :: (SocketType a) => a -> IO (Socket a)
+ Nanomsg: socket :: SocketType a => a -> IO (Socket a)
- Nanomsg: withSocket :: (SocketType a) => a -> (Socket a -> IO b) -> IO b
+ Nanomsg: withSocket :: SocketType a => a -> (Socket a -> IO b) -> IO b
- Nanomsg.Binary: socket :: (SocketType a) => a -> IO (Socket a)
+ Nanomsg.Binary: socket :: SocketType a => a -> IO (Socket a)
- Nanomsg.Binary: withSocket :: (SocketType a) => a -> (Socket a -> IO b) -> IO b
+ Nanomsg.Binary: withSocket :: SocketType a => a -> (Socket a -> IO b) -> IO b

Files

CONTRIBUTORS view
@@ -1,4 +1,5 @@-Ivar Nymoen <ivar.nymoen@gmail.com>-João Cristóvão <jmacristovao@gmail.com>-Jakub Stasiak <jakub@stasiak.at>-Will Martino <wjmartino@gmail.com>+Ivar Nymoen <ivar dot nymoen at gmail dot com>+João Cristóvão <jmacristovao at gmail dot com>+Jakub Stasiak <jakub at stasiak dot at>+Will Martino <wjmartino at gmail dot com>+Ben Gamari
changelog view
@@ -1,3 +1,5 @@+0.2.4+  * Bumped upper bound on binary 0.2.3   * Switched to safe ffi calls to play better with the runtime   * Tests fixed for ghc 7.10
nanomsg-haskell.cabal view
@@ -1,5 +1,5 @@ name:                nanomsg-haskell-version:             0.2.3+version:             0.2.4 synopsis:   Bindings to the nanomsg library description:@@ -16,8 +16,8 @@ license:             MIT license-file:        LICENSE author:              Ivar Nymoen-maintainer:          <ivar.nymoen@gmail.com>-copyright:           Copyright (c) 2013 Ivar Nymoen+maintainer:          ivar dot nymoen at gmail dot com+copyright:           Copyright (c) 2013 the nanomsg-haskell authors category:            Network build-type:          Simple cabal-version:       >=1.10@@ -43,7 +43,7 @@   build-depends:     base >= 4.5 && < 5,     bytestring >= 0.9.0 && < 0.11,-    binary >= 0.7 && < 0.8   +    binary >= 0.7 && < 0.9  test-suite tests   type:              exitcode-stdio-1.0