hosc 0.19 → 0.19.1
raw patch · 2 files changed
+9/−1 lines, 2 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- Sound/OSC/Coding/Encode/Builder.hs +6/−0
- hosc.cabal +3/−1
Sound/OSC/Coding/Encode/Builder.hs view
@@ -1,4 +1,6 @@ -- | Optimised encode function for OSC packets.+{-# LANGUAGE CPP #-}+ module Sound.OSC.Coding.Encode.Builder (build_packet ,encodeMessage@@ -13,6 +15,10 @@ import qualified Data.ByteString.Lazy as L {- bytestring -} import qualified Blaze.ByteString.Builder as B {- bytestring -} import qualified Blaze.ByteString.Builder.Char8 as B {- bytestring -}++#ifdef IMPORT_SEMIGROUP+import Data.Semigroup+#endif import qualified Sound.OSC.Coding.Byte as Byte {- hosc -} import qualified Sound.OSC.Coding.Convert as Convert {- hosc -}
hosc.cabal view
@@ -1,5 +1,5 @@ Name: hosc-Version: 0.19+Version: 0.19.1 Synopsis: Haskell Open Sound Control Description: @hosc@ implements a subset of the Open Sound Control byte protocol, <http://opensoundcontrol.org/>.@@ -29,6 +29,8 @@ transformers Default-Language:Haskell2010 GHC-Options: -Wall -fwarn-tabs+ if impl(ghc < 8.4)+ cpp-options: -DIMPORT_SEMIGROUP Exposed-modules: Sound.OSC Sound.OSC.Coding.Byte Sound.OSC.Coding.Cast