packages feed

active 0.2.0.16 → 0.2.0.17

raw patch · 2 files changed

+38/−17 lines, 2 filesdep +activedep ~basedep ~lineardep ~semigroupoidsPVP ok

version bump matches the API change (PVP)

Dependencies added: active

Dependency ranges changed: base, linear, semigroupoids, semigroups

API changes (from Hackage documentation)

Files

CHANGES view
@@ -1,7 +1,16 @@+## [0.2.0.17](https://github.com/diagrams/active/tree/v0.2.0.16) (2023-03-31)++- Updates for GHC 9.6+- Allow `base-4.18`, `semigroupoids-6.0`+ ## [0.2.0.16](https://github.com/diagrams/active/tree/v0.2.0.16) (2022-08-23)  - Updates for GHC 9.4 - Allow `base-4.17`, `lens-5.2`++Hackage revisions:++- r1 (30 Nov 2022): allow `linear-1.22`  ## [0.2.0.15](https://github.com/diagrams/active/tree/v0.2.0.15) (2021-05-24) 
active.cabal view
@@ -1,5 +1,6 @@+cabal-version:       1.18 name:                active-version:             0.2.0.16+version:             0.2.0.17 synopsis:            Abstractions for animation description:         "Active" abstraction for animated things with finite start and end times. license:             BSD3@@ -7,38 +8,49 @@ author:              Brent Yorgey maintainer:          byorgey@gmail.com copyright:           (c) 2011-2015 Brent Yorgey+bug-reports:         https://github.com/diagrams/active/issues category:            Data build-type:          Simple-cabal-version:       1.18-extra-source-files:  CHANGES, README.markdown, diagrams/*.svg-extra-doc-files:     diagrams/*.svg-tested-with:         GHC ==7.8.4 || ==7.10.3 || ==8.0.2 || ==8.2.2 || ==8.4.4 || ==8.6.5 || ==8.8.4 || ==8.10.7 || ==9.0.2 || ==9.2.4 || ==9.4.1-bug-reports:         https://github.com/diagrams/active/issues++extra-doc-files:     CHANGES, README.markdown, diagrams/*.svg++tested-with:+  GHC ==7.8.4+   || ==7.10.3+   || ==8.0.2+   || ==8.2.2+   || ==8.4.4+   || ==8.6.5+   || ==8.8.4+   || ==8.10.7+   || ==9.0.2+   || ==9.2.7+   || ==9.4.4+   || ==9.6.1+ source-repository head   type:     git   location: https://github.com/diagrams/active.git  library   exposed-modules:     Data.Active-  build-depends:       base >= 4.0 && < 4.18,+  build-depends:       base >= 4.0 && < 4.19,                        vector >= 0.10,                        semigroups >= 0.1 && < 0.21,-                       semigroupoids >= 1.2 && < 5.4,+                       semigroupoids >= 1.2 && < 6.1,                        lens >= 4.0 && < 5.3,-                       linear >= 1.14 && < 1.22+                       linear >= 1.14 && < 1.23   hs-source-dirs:      src   default-language:    Haskell2010  test-suite active-tests     type:              exitcode-stdio-1.0     main-is:           active-tests.hs-    build-depends:     base >= 4.0 && < 4.18,-                       vector >= 0.10,-                       semigroups >= 0.1 && < 0.21,-                       semigroupoids >= 1.2 && < 5.4,-                       lens >= 4.0 && < 5.3,-                       linear >= 1.14 && < 1.22,+    build-depends:     active,+                       base,+                       linear,+                       semigroups,+                         -- semigroups needed for GHC 7.x only                        QuickCheck >= 2.9 && < 2.15-    other-modules:     Data.Active-    hs-source-dirs:    src, test+    hs-source-dirs:    test     default-language:  Haskell2010