packages feed

AGI 1.2.1 → 1.2.2

raw patch · 3 files changed

+9/−3 lines, 3 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

AGI.cabal view
@@ -7,7 +7,7 @@      can be used to write external programs that interact with      Asterisk. It is typically used for creating Interactive Voice      Response (IVR) systems. -Version:        1.2.1+Version:        1.2.2 License:        BSD3 License-File:   LICENSE Author:         Jeremy Shaw
Network/AGI.hs view
@@ -230,8 +230,8 @@                         case (mTimeout, mMaxDigits) of                           (Nothing, Nothing) -> ""                           (Just timeout, Nothing) ->  show timeout-                          (Nothing, Just maxDigits) -> "2000 " ++ show maxDigits-                          (Just timeout, Just maxDigits) -> show timeout ++" "++ show maxDigits+                          (Nothing, Just maxDigits) -> " 2000 " ++ show maxDigits+                          (Just timeout, Just maxDigits) -> " " ++ show timeout ++" "++ show maxDigits      in       do res <- sendRecv cmd
debian/changelog view
@@ -1,3 +1,9 @@+haskell-agi (1.2.2) unstable; urgency=low++  * Fix bug in getData when specifying maxDigits or timeout++ -- Jeremy Shaw <jeremy@n-heptane.com>  Fri, 04 Jul 2008 18:02:34 -0700+ haskell-agi (1.2.1) unstable; urgency=low    * Added digitsToInteger