packages feed

linear 1.21.8 → 1.21.9

raw patch · 5 files changed

+12/−4 lines, 5 filesdep ~transformersPVP ok

version bump matches the API change (PVP)

Dependency ranges changed: transformers

API changes (from Hackage documentation)

Files

.hlint.yaml view
@@ -1,3 +1,5 @@+- arguments: [-XCPP]+ - ignore: {name: Use fmap} - ignore: {name: Avoid lambda} - ignore: {name: Redundant lambda}
CHANGELOG.markdown view
@@ -1,3 +1,7 @@+1.21.9 [2022.05.18]+-------------------+* Allow building with `transformers-0.6.*`.+ 1.21.8 [2021.11.15] ------------------- * Allow building with `hashable-1.4.*`.
linear.cabal view
@@ -1,6 +1,6 @@ name:          linear category:      Math, Algebra-version:       1.21.8+version:       1.21.9 license:       BSD3 cabal-version: >= 1.10 license-file:  LICENSE@@ -19,8 +19,8 @@              , GHC == 8.6.5              , GHC == 8.8.4              , GHC == 8.10.7-             , GHC == 9.0.1-             , GHC == 9.2.1+             , GHC == 9.0.2+             , GHC == 9.2.2 extra-source-files:   .gitignore   .hlint.yaml@@ -65,7 +65,7 @@     semigroups           >= 0.9   && < 1,     semigroupoids        >= 5.2.1 && < 6,     tagged               >= 0.8.6 && < 1,-    transformers         >= 0.5   && < 0.6,+    transformers         >= 0.5   && < 0.7,     transformers-compat  >= 0.5.0.4 && < 1,     unordered-containers >= 0.2.3 && < 0.3,     vector               >= 0.12.1.2 && < 0.13,
src/Linear/Affine.hs view
@@ -6,6 +6,7 @@ {-# LANGUAGE MultiParamTypeClasses #-} {-# LANGUAGE UndecidableInstances #-} {-# LANGUAGE TypeFamilies #-}+{-# LANGUAGE TypeOperators #-} {-# LANGUAGE RankNTypes #-} {-# LANGUAGE Trustworthy #-} {-# LANGUAGE DeriveGeneric #-}
src/Linear/Matrix.hs view
@@ -4,6 +4,7 @@ {-# LANGUAGE ScopedTypeVariables #-} {-# LANGUAGE Trustworthy #-} {-# LANGUAGE TypeFamilies #-}+{-# LANGUAGE TypeOperators #-}  --------------------------------------------------------------------------- -- |