Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version 0.3.0.4 #9

Merged
merged 2 commits into from
Feb 19, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion System/FTDI/Properties.hs
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@

module System.FTDI.Properties where

import Control.Applicative

Check warning on line 6 in System/FTDI/Properties.hs

View workflow job for this annotation

GitHub Actions / ubuntu-20.04 GHC 9.8

The import of ‘Control.Applicative’ is redundant
import Control.Arrow
import Data.Bits ( (.&.) )
import Data.Bits
import Data.Word
import Generic.Random ( genericArbitrary, uniform )
import System.FTDI ( ModemStatus(..), ChipType(..)
Expand Down
8 changes: 4 additions & 4 deletions ftdi.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-type: Simple
stability: experimental
author: Roel van Dijk <vandijk.roel@gmail.com>, Ben Gamari <ben@smart-cactus.org>, David Cox <standardsemiconductor@gmail.com>
maintainer: David Cox <standardsemiconductor@gmail.com
copyright: (c) 2009, 2010 Roel van Dijk, (c) 2018 Ben Gamari, (c) 2021-2024 David Cox
copyright: (c) 2009, 2010 Roel van Dijk, (c) 2018 Ben Gamari, (c) 2021-2025 David Cox
license: BSD3
license-file: LICENSE
category: System, Hardware
Expand All @@ -25,7 +25,7 @@ library
, System.FTDI.Internal
other-modules: System.FTDI.Utils
build-depends: async >= 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
Expand All @@ -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
Expand Down
Loading