ALUT 2.4.0.2 → 2.4.0.3
raw patch · 3 files changed
+23/−9 lines, 3 filesdep ~StateVardep ~transformersPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: StateVar, transformers
API changes (from Hackage documentation)
- Sound.ALUT.Initialization: withProgNameAndArgs :: MonadIO m => (ArgumentConsumer (Runner m a)) -> Runner m a
+ Sound.ALUT.Initialization: withProgNameAndArgs :: MonadIO m => ArgumentConsumer (Runner m a) -> Runner m a
- Sound.ALUT.Loaders: FileImage :: (MemoryRegion a) -> SoundDataSource a
+ Sound.ALUT.Loaders: FileImage :: MemoryRegion a -> SoundDataSource a
Files
- ALUT.cabal +17/−3
- CHANGELOG.md +4/−0
- README.md +2/−6
ALUT.cabal view
@@ -1,5 +1,5 @@ name: ALUT-version: 2.4.0.2+version: 2.4.0.3 synopsis: A binding for the OpenAL Utility Toolkit description: A Haskell binding for the OpenAL Utility Toolkit, which makes@@ -16,7 +16,19 @@ maintainer: Sven Panne <svenpanne@gmail.com> category: Sound build-type: Simple-cabal-version: >= 1.10+tested-with:+ GHC == 7.0.4+ GHC == 7.2.2+ GHC == 7.4.2+ GHC == 7.6.3+ GHC == 7.8.4+ GHC == 7.10.3+ GHC == 8.0.2+ GHC == 8.2.2+ GHC == 8.4.3+ GHC == 8.6.5+ GHC == 8.8.1+cabal-version: >= 1.10 extra-source-files: CHANGELOG.md README.md@@ -46,10 +58,12 @@ Sound.ALUT.Errors hs-source-dirs: src ghc-options: -Wall+ if impl(ghc > 8)+ ghc-options: -Wcompat build-depends: base >= 3 && < 5, transformers >= 0.2 && < 0.6,- StateVar >= 1.1 && < 1.2,+ StateVar >= 1.1 && < 1.3, OpenAL >= 1.7 && < 1.8 default-language: Haskell2010 other-extensions: CPP
CHANGELOG.md view
@@ -1,3 +1,7 @@+2.4.0.3+-------+* Relaxed upper version bound for `StateVar`.+ 2.4.0.2 ------- * Build examples via cabal.
README.md view
@@ -1,8 +1,4 @@-ALUT-====+# ALUT [](https://hackage.haskell.org/package/ALUT) [](https://www.stackage.org/lts/package/ALUT) [](https://www.stackage.org/nightly/package/ALUT) [](https://travis-ci.org/haskell-openal/ALUT) -A Haskell binding for the OpenAL Utility Toolkit, which makes managing of OpenAL contexts, loading sounds in various formats and creating waveforms very easy. -[](https://hackage.haskell.org/package/ALUT) [](https://travis-ci.org/haskell-openal/ALUT)--You can find the required binaries [here](https://github.com/vancegroup/freealut)+A Haskell binding for the OpenAL Utility Toolkit, which makes managing of OpenAL contexts, loading sounds in various formats and creating waveforms very easy. You can find the required ALUT library e.g. [here on GitHub](https://github.com/vancegroup/freealut).