blucontrol 0.7.0.0 → 0.7.1.0
raw patch · 3 files changed
+12/−7 lines, 3 filesdep ~finite-typelitsdep ~mtldep ~textPVP: major bump suggested
API removals or changes: PVP suggests a major version bump
Dependency ranges changed: finite-typelits, mtl, text, time, transformers, unix
API changes (from Hackage documentation)
- Blucontrol: type family ApplicableValue m;
- Blucontrol.Monad.ApplyValue: type family ApplicableValue m;
- Blucontrol.Monad.Control: type family ControlConstraint m a :: Constraint;
- Blucontrol.Monad.PrepareValue: type family PreparedValue m;
+ Blucontrol: type ApplicableValue m;
+ Blucontrol: type ControlConstraint m a :: Constraint;
+ Blucontrol: type PreparedValue m;
+ Blucontrol.Monad.ApplyValue: type ApplicableValue m;
+ Blucontrol.Monad.Control: type ControlConstraint m a :: Constraint;
+ Blucontrol.Monad.PrepareValue: type PreparedValue m;
- Blucontrol: class Default a
+ Blucontrol: class () => Default a
- Blucontrol.Monad.PrepareValue.Linear: data NonEmpty a
+ Blucontrol.Monad.PrepareValue.Linear: data () => NonEmpty a
Files
- CHANGELOG.md +4/−0
- blucontrol.cabal +7/−7
- src/Blucontrol/Monad/Control/Count.hs +1/−0
CHANGELOG.md view
@@ -1,5 +1,9 @@ # Revision history for blucontrol +## 0.7.1.0 *16 Jan 2024*++* Support GHC 9.6.+ ## 0.7.0.0 *19 Jul 2021* * `MonadGamma` has been renamed to `MonadPrepareValue`.
blucontrol.cabal view
@@ -1,5 +1,5 @@ name: blucontrol-version: 0.7.0.0+version: 0.7.1.0 synopsis: Configurable blue light filter description: This application is a blue light filter, with the main focus on configurability.@@ -54,16 +54,16 @@ , data-default >= 0.7.1 && < 0.7.2 , deepseq >= 1.4.4.0 && < 1.5 , filepath >= 1.4.2.1 && < 1.5- , finite-typelits >= 0.1.4.0 && < 0.1.5+ , finite-typelits >= 0.1.4.0 && < 0.1.7 , lifted-base >= 0.2.3.2 && < 0.2.4 , monad-control >= 1.0.2.0 && < 1.1- , mtl >= 2.2.2 && < 2.3+ , mtl >= 2.2.2 && < 2.4 , process >= 1.6.6.0 && < 1.7- , text >= 1.2.0.0 && < 1.3- , time >= 1.9.3 && < 1.10- , transformers >= 0.5.6.2 && < 0.5.7+ , text >= 1.2.0.0 && < 2.1+ , time >= 1.9.3 && < 1.13+ , transformers >= 0.5.6.2 && < 0.7 , transformers-base >= 0.4.5.2 && < 0.5- , unix >= 2.7.2.2 && < 2.8+ , unix >= 2.7.2.2 && < 2.9 , X11 >= 1.9 && < 2 hs-source-dirs: src includes: XrandrGamma.h
src/Blucontrol/Monad/Control/Count.hs view
@@ -8,6 +8,7 @@ ) where import Control.DeepSeq+import Control.Monad import Control.Monad.Base import Control.Monad.Trans.Control import Control.Monad.Trans.Control.Default