hpio 0.9.0.1 → 0.9.0.2
raw patch · 7 files changed
+19/−19 lines, 7 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- .travis.yml +0/−10
- changelog.md +9/−0
- hpio.cabal +1/−1
- nix/hpio.nix +2/−2
- package.yaml +1/−1
- src/System/GPIO.hs +4/−3
- src/System/GPIO/Linux.hs +2/−2
.travis.yml view
@@ -74,16 +74,6 @@ compiler: ": #stack nightly" addons: {apt: {packages: [libgmp-dev]}} - # Build on OS X in addition to Linux.- # OS X builds are much slower, so we only test a few configurations here.- - env: BUILD=stack ARGS=""- compiler: ": #stack default osx"- os: osx-- - env: BUILD=stack ARGS="--resolver nightly"- compiler: ": #stack nightly osx"- os: osx- allow_failures: - env: BUILD=cabal GHCVER=head CABALVER=head HAPPYVER=1.19.5 ALEXVER=3.1.7 - env: BUILD=stack ARGS="--resolver nightly"
changelog.md view
@@ -1,3 +1,12 @@+## 0.9.0.2 (2017-10-18)++Changes:+ - Revert to manual imports in top-level modules for better Haddocks.++Fixes:+ - Fix source path in hpio.nix.+ - Remove macOS builds from Travis-CI config; they're just too slow.+ ## 0.9.0.1 (2017-10-16) Fixes:
hpio.cabal view
@@ -3,7 +3,7 @@ -- see: https://github.com/sol/hpack name: hpio-version: 0.9.0.1+version: 0.9.0.2 synopsis: Monads for GPIO in Haskell description: This package provides an embedded DSL for writing cross-platform GPIO programs in Haskell. Currently only Linux is supported (via the
nix/hpio.nix view
@@ -6,8 +6,8 @@ }: mkDerivation { pname = "hpio";- version = "0.9.0.1";- src = ./.;+ version = "0.9.0.2";+ src = ../.; isLibrary = true; isExecutable = true; libraryHaskellDepends = [
package.yaml view
@@ -1,5 +1,5 @@ name: hpio-version: 0.9.0.1+version: 0.9.0.2 synopsis: Monads for GPIO in Haskell category: System stability: experimental
src/System/GPIO.hs view
@@ -14,8 +14,9 @@ {-# LANGUAGE Safe #-} module System.GPIO- ( module X+ ( module System.GPIO.Monad+ , module System.GPIO.Linux ) where -import System.GPIO.Monad as X-import System.GPIO.Linux as X+import System.GPIO.Monad+import System.GPIO.Linux
src/System/GPIO/Linux.hs view
@@ -20,7 +20,7 @@ {-# LANGUAGE Safe #-} module System.GPIO.Linux- ( module X+ ( module System.GPIO.Linux.Sysfs ) where -import System.GPIO.Linux.Sysfs as X+import System.GPIO.Linux.Sysfs