From 251f766857c14b2ba2aed87d0bf74c06534d720a Mon Sep 17 00:00:00 2001 From: dopamane Date: Tue, 18 Feb 2025 16:49:03 -0800 Subject: [PATCH 1/2] Version 0.3.0.4 --- CHANGELOG.md | 5 +++++ System/FTDI/Properties.hs | 3 +-- ftdi.cabal | 8 ++++---- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 91e8fb7..17d91df 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Revision history for ftdi +## 0.3.0.4 -- 2025-02-18 + +* Export `System.FTDI.Internal` +* Update dependency bounds + ## 0.3.0.3 -- 2024-06-01 * Remove base-unicode-symbols diff --git a/System/FTDI/Properties.hs b/System/FTDI/Properties.hs index 9208cf6..be0dace 100644 --- a/System/FTDI/Properties.hs +++ b/System/FTDI/Properties.hs @@ -3,9 +3,8 @@ module System.FTDI.Properties where -import Control.Applicative import Control.Arrow -import Data.Bits ( (.&.) ) +import Data.Bits import Data.Word import Generic.Random ( genericArbitrary, uniform ) import System.FTDI ( ModemStatus(..), ChipType(..) diff --git a/ftdi.cabal b/ftdi.cabal index bf97c53..86aaf75 100644 --- a/ftdi.cabal +++ b/ftdi.cabal @@ -5,7 +5,7 @@ build-type: Simple stability: experimental author: Roel van Dijk , Ben Gamari , David Cox maintainer: David Cox = 2.2 && < 2.3 - , base >= 4.5 && < 4.21 + , base >= 4.5 && < 4.22 , bytestring >= 0.10 && < 0.13 , transformers >= 0.5 && < 0.7 , usb >= 1.3 && < 1.4 @@ -43,11 +43,11 @@ test-suite test , System.FTDI.Utils.Properties ghc-options: -Wall -fno-warn-orphans default-language: Haskell2010 - build-depends: base < 4.21 + build-depends: base < 4.22 , bytestring , QuickCheck >= 2.11 && < 2.16 , generic-random >= 1.3 && < 1.6 - , random >= 1.0.0 && < 1.3 + , random >= 1.0.0 && < 1.4 , tagged >= 0.8 && < 0.9 , test-framework >= 0.8 && < 0.9 , test-framework-quickcheck2 >= 0.3 && < 0.4 From 892e00af6f9e93176ab532272a28573d992798e5 Mon Sep 17 00:00:00 2001 From: dopamane Date: Tue, 18 Feb 2025 16:53:45 -0800 Subject: [PATCH 2/2] Fixup --- System/FTDI/Properties.hs | 1 + 1 file changed, 1 insertion(+) diff --git a/System/FTDI/Properties.hs b/System/FTDI/Properties.hs index be0dace..c9dd5dd 100644 --- a/System/FTDI/Properties.hs +++ b/System/FTDI/Properties.hs @@ -3,6 +3,7 @@ module System.FTDI.Properties where +import Control.Applicative import Control.Arrow import Data.Bits import Data.Word