packages feed

hpio 0.8.0.6 → 0.8.0.7

raw patch · 6 files changed

+11/−7 lines, 6 filesPVP ok

version bump matches the API change (PVP)

API changes (from Hackage documentation)

Files

changelog.md view
@@ -1,3 +1,9 @@+## 0.8.0.7 (2017-02-21)++Fixes:+  - Fix hlint tests.+  - Note GHC 8.0.2 compatibility in cabal file.+ ## 0.8.0.6 (2017-01-25)  Fixes:
default.nix view
@@ -5,7 +5,7 @@ }: mkDerivation {   pname = "hpio";-  version = "0.8.0.6";+  version = "0.8.0.7";   src = ./.;   isLibrary = true;   isExecutable = true;
hpio.cabal view
@@ -1,5 +1,5 @@ Name:                   hpio-Version:                0.8.0.6+Version:                0.8.0.7 Cabal-Version:          >= 1.10 Build-Type:             Simple Author:                 Drew Hess <src@drewhess.com>@@ -10,7 +10,7 @@ License:                BSD3 License-File:           LICENSE Copyright:              Copyright (c) 2016, Drew Hess-Tested-With:            GHC == 7.8.4, GHC == 7.10.2, GHC == 7.10.3, GHC == 8.0.1+Tested-With:            GHC == 7.8.4, GHC == 7.10.2, GHC == 7.10.3, GHC == 8.0.1, GHC == 8.0.2 Category:               System Synopsis:               Monads for GPIO in Haskell Description:@@ -257,4 +257,4 @@ Source-Repository this   Type:                 git   Location:             git://github.com/dhess/hpio.git-  Tag:                  v0.8.0.6+  Tag:                  v0.8.0.7
shell.nix view
@@ -11,7 +11,7 @@       }:       mkDerivation {         pname = "hpio";-        version = "0.8.0.6";+        version = "0.8.0.7";         src = ./.;         isLibrary = true;         isExecutable = true;
src/System/GPIO/Linux/Sysfs/IO.hs view
@@ -16,7 +16,6 @@ {-# LANGUAGE ForeignFunctionInterface #-} {-# LANGUAGE GeneralizedNewtypeDeriving #-} {-# LANGUAGE InterruptibleFFI #-}-{-# LANGUAGE LambdaCase #-} {-# LANGUAGE OverloadedStrings #-} {-# LANGUAGE PackageImports #-} {-# LANGUAGE Trustworthy #-}
src/System/GPIO/Monad.hs view
@@ -13,7 +13,6 @@  {-# LANGUAGE FlexibleInstances #-} {-# LANGUAGE FunctionalDependencies #-}-{-# LANGUAGE LambdaCase #-} {-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE PackageImports #-} {-# LANGUAGE UndecidableInstances #-}