bus-pirate 0.4 → 0.5
raw patch · 2 files changed
+5/−4 lines, 2 filesdep ~basedep ~transformersPVP ok
version bump matches the API change (PVP)
Dependency ranges changed: base, transformers
API changes (from Hackage documentation)
Files
- System/Hardware/BusPirate/I2C.hs +2/−1
- bus-pirate.cabal +3/−3
System/Hardware/BusPirate/I2C.hs view
@@ -1,9 +1,10 @@ {-# LANGUAGE OverloadedStrings, GeneralizedNewtypeDeriving #-} module System.Hardware.BusPirate.I2C- ( -- * Bus operations+ ( -- * Types I2cM , i2cMode+ -- * Bus operations , startBit , stopBit , readByte
bus-pirate.cabal view
@@ -1,5 +1,5 @@ name: bus-pirate-version: 0.4+version: 0.5 synopsis: Haskell interface to the Bus Pirate binary interface homepage: http://www.github.com/bgamari/bus-pirate license: BSD3@@ -21,10 +21,10 @@ exposed-modules: System.Hardware.BusPirate System.Hardware.BusPirate.I2C other-modules: System.Hardware.BusPirate.Core- build-depends: base >=4.6 && <4.7,+ build-depends: base >=4.6 && <4.8, serialport >=0.4 && <0.5, bytestring >=0.10 && <0.11, errors >=1.4 && <1.5,- transformers >=0.3 && <0.4,+ transformers >=0.3 && <0.5, either default-language: Haskell2010