packages feed

Cabal revisions of generic-optics-2.2.1.0

Hackage metadata revisions edit the .cabal file after upload; each diff below is one revision.

revision 1
-name:                 generic-optics-version:              2.2.1.0-synopsis:             Generically derive traversals, lenses and prisms.-description:          This library uses GHC.Generics to derive efficient optics (traversals, lenses and prisms) for algebraic data types in a type-directed way, with a focus on good type inference and error messages when possible.-                      .-                      The library exposes an @<https://hackage.haskell.org/package/optics optics>@ interface. For a van Laarhoven interface, see-                      @<https://hackage.haskell.org/package/generic-lens generic-lens>@.--homepage:             https://github.com/kcsongor/generic-lens-license:              BSD3-license-file:         LICENSE-author:               Csongor Kiss-maintainer:           kiss.csongor.kiss@gmail.com-category:             Generics, Records, Lens-build-type:           Simple-cabal-version:        >= 1.10-Tested-With:          GHC == 8.4.1, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.4, GHC == 8.10.3, GHC == 9.0.1, GHC == 9.2.1--extra-source-files:   examples/StarWars.hs-                    , examples/Examples.hs-                    , ChangeLog.md--library-  exposed-modules:    Data.Generics.Wrapped-                    , Data.Generics.Product-                    , Data.Generics.Product.Any-                    , Data.Generics.Product.Fields-                    , Data.Generics.Product.Param-                    , Data.Generics.Product.Positions-                    , Data.Generics.Product.Subtype-                    , Data.Generics.Product.Typed-                    , Data.Generics.Product.Types-                    , Data.Generics.Product.HList-                    -- , Data.Generics.Labels--                    , Data.Generics.Sum-                    , Data.Generics.Sum.Any-                    , Data.Generics.Sum.Constructors-                    , Data.Generics.Sum.Typed-                    , Data.Generics.Sum.Subtype--  other-modules:      Data.Generics.Internal.Optics--  build-depends:      base        >= 4.11 && < 5-                    , generic-lens-core == 2.2.1.0-                    , optics-core >= 0.2 && < 1.0-                    , text        >= 1.2 && < 1.3--  hs-source-dirs:     src-  default-language:   Haskell2010-  ghc-options:        -Wall--test-suite generic-optics-inspection-tests-  type:               exitcode-stdio-1.0-  hs-source-dirs:     test-  main-is:            Spec.hs-  other-modules:      Util Test24 Test88 Test25 Test40 Test62 Test63 CustomChildren--  build-depends:      base          >= 4.11 && <= 5.0-                    , generic-optics-                    , optics-core-                    , inspection-testing >= 0.2-                    , HUnit--  default-language:   Haskell2010-  ghc-options:        -Wall--test-suite generic-optics-bifunctor-  type:               exitcode-stdio-1.0-  hs-source-dirs:     test-  main-is:            Bifunctor.hs--  build-depends:      base          >= 4.11 && <= 5.0-                    , generic-optics-                    , optics-core-                    , HUnit--  default-language:   Haskell2010-  ghc-options:        -Wall--test-suite generic-optics-syb-tree-  type:               exitcode-stdio-1.0-  hs-source-dirs:     test/syb-  main-is:            Tree.hs--  build-depends:      base          >= 4.11 && <= 5.0-                    , generic-optics-                    , optics-core-                    , HUnit--  default-language:   Haskell2010-  ghc-options:        -Wall--test-suite doctests-  default-language:   Haskell2010-  type:               exitcode-stdio-1.0-  ghc-options:        -threaded-  main-is:            doctest.hs-  build-depends:      base >4 && <5, doctest-  hs-source-dirs:     examples+name:                 generic-optics
+version:              2.2.1.0
+x-revision: 1
+synopsis:             Generically derive traversals, lenses and prisms.
+description:          This library uses GHC.Generics to derive efficient optics (traversals, lenses and prisms) for algebraic data types in a type-directed way, with a focus on good type inference and error messages when possible.
+                      .
+                      The library exposes an @<https://hackage.haskell.org/package/optics optics>@ interface. For a van Laarhoven interface, see
+                      @<https://hackage.haskell.org/package/generic-lens generic-lens>@.
+
+homepage:             https://github.com/kcsongor/generic-lens
+license:              BSD3
+license-file:         LICENSE
+author:               Csongor Kiss
+maintainer:           kiss.csongor.kiss@gmail.com
+category:             Generics, Records, Lens
+build-type:           Simple
+cabal-version:        >= 1.10
+Tested-With:          GHC == 8.4.1, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.4, GHC == 8.10.3, GHC == 9.0.1, GHC == 9.2.1
+
+extra-source-files:   examples/StarWars.hs
+                    , examples/Examples.hs
+                    , ChangeLog.md
+
+library
+  exposed-modules:    Data.Generics.Wrapped
+                    , Data.Generics.Product
+                    , Data.Generics.Product.Any
+                    , Data.Generics.Product.Fields
+                    , Data.Generics.Product.Param
+                    , Data.Generics.Product.Positions
+                    , Data.Generics.Product.Subtype
+                    , Data.Generics.Product.Typed
+                    , Data.Generics.Product.Types
+                    , Data.Generics.Product.HList
+                    -- , Data.Generics.Labels
+
+                    , Data.Generics.Sum
+                    , Data.Generics.Sum.Any
+                    , Data.Generics.Sum.Constructors
+                    , Data.Generics.Sum.Typed
+                    , Data.Generics.Sum.Subtype
+
+  other-modules:      Data.Generics.Internal.Optics
+
+  build-depends:      base        >= 4.11 && < 5
+                    , generic-lens-core == 2.2.1.0
+                    , optics-core >= 0.2 && < 1.0
+                    , text        >= 1.2 && < 1.3 || >= 2.0 && < 2.1
+
+  hs-source-dirs:     src
+  default-language:   Haskell2010
+  ghc-options:        -Wall
+
+test-suite generic-optics-inspection-tests
+  type:               exitcode-stdio-1.0
+  hs-source-dirs:     test
+  main-is:            Spec.hs
+  other-modules:      Util Test24 Test88 Test25 Test40 Test62 Test63 CustomChildren
+
+  build-depends:      base          >= 4.11 && <= 5.0
+                    , generic-optics
+                    , optics-core
+                    , inspection-testing >= 0.2
+                    , HUnit
+
+  default-language:   Haskell2010
+  ghc-options:        -Wall
+
+test-suite generic-optics-bifunctor
+  type:               exitcode-stdio-1.0
+  hs-source-dirs:     test
+  main-is:            Bifunctor.hs
+
+  build-depends:      base          >= 4.11 && <= 5.0
+                    , generic-optics
+                    , optics-core
+                    , HUnit
+
+  default-language:   Haskell2010
+  ghc-options:        -Wall
+
+test-suite generic-optics-syb-tree
+  type:               exitcode-stdio-1.0
+  hs-source-dirs:     test/syb
+  main-is:            Tree.hs
+
+  build-depends:      base          >= 4.11 && <= 5.0
+                    , generic-optics
+                    , optics-core
+                    , HUnit
+
+  default-language:   Haskell2010
+  ghc-options:        -Wall
+
+test-suite doctests
+  default-language:   Haskell2010
+  type:               exitcode-stdio-1.0
+  ghc-options:        -threaded
+  main-is:            doctest.hs
+  build-depends:      base >4 && <5, doctest
+  hs-source-dirs:     examples
revision 2
-name:                 generic-optics
-version:              2.2.1.0
-x-revision: 1
-synopsis:             Generically derive traversals, lenses and prisms.
-description:          This library uses GHC.Generics to derive efficient optics (traversals, lenses and prisms) for algebraic data types in a type-directed way, with a focus on good type inference and error messages when possible.
-                      .
-                      The library exposes an @<https://hackage.haskell.org/package/optics optics>@ interface. For a van Laarhoven interface, see
-                      @<https://hackage.haskell.org/package/generic-lens generic-lens>@.
-
-homepage:             https://github.com/kcsongor/generic-lens
-license:              BSD3
-license-file:         LICENSE
-author:               Csongor Kiss
-maintainer:           kiss.csongor.kiss@gmail.com
-category:             Generics, Records, Lens
-build-type:           Simple
-cabal-version:        >= 1.10
-Tested-With:          GHC == 8.4.1, GHC == 8.4.4, GHC == 8.6.5, GHC == 8.8.4, GHC == 8.10.3, GHC == 9.0.1, GHC == 9.2.1
-
-extra-source-files:   examples/StarWars.hs
-                    , examples/Examples.hs
-                    , ChangeLog.md
-
-library
-  exposed-modules:    Data.Generics.Wrapped
-                    , Data.Generics.Product
-                    , Data.Generics.Product.Any
-                    , Data.Generics.Product.Fields
-                    , Data.Generics.Product.Param
-                    , Data.Generics.Product.Positions
-                    , Data.Generics.Product.Subtype
-                    , Data.Generics.Product.Typed
-                    , Data.Generics.Product.Types
-                    , Data.Generics.Product.HList
-                    -- , Data.Generics.Labels
-
-                    , Data.Generics.Sum
-                    , Data.Generics.Sum.Any
-                    , Data.Generics.Sum.Constructors
-                    , Data.Generics.Sum.Typed
-                    , Data.Generics.Sum.Subtype
-
-  other-modules:      Data.Generics.Internal.Optics
-
-  build-depends:      base        >= 4.11 && < 5
-                    , generic-lens-core == 2.2.1.0
-                    , optics-core >= 0.2 && < 1.0
-                    , text        >= 1.2 && < 1.3 || >= 2.0 && < 2.1
-
-  hs-source-dirs:     src
-  default-language:   Haskell2010
-  ghc-options:        -Wall
-
-test-suite generic-optics-inspection-tests
-  type:               exitcode-stdio-1.0
-  hs-source-dirs:     test
-  main-is:            Spec.hs
-  other-modules:      Util Test24 Test88 Test25 Test40 Test62 Test63 CustomChildren
-
-  build-depends:      base          >= 4.11 && <= 5.0
-                    , generic-optics
-                    , optics-core
-                    , inspection-testing >= 0.2
-                    , HUnit
-
-  default-language:   Haskell2010
-  ghc-options:        -Wall
-
-test-suite generic-optics-bifunctor
-  type:               exitcode-stdio-1.0
-  hs-source-dirs:     test
-  main-is:            Bifunctor.hs
-
-  build-depends:      base          >= 4.11 && <= 5.0
-                    , generic-optics
-                    , optics-core
-                    , HUnit
-
-  default-language:   Haskell2010
-  ghc-options:        -Wall
-
-test-suite generic-optics-syb-tree
-  type:               exitcode-stdio-1.0
-  hs-source-dirs:     test/syb
-  main-is:            Tree.hs
-
-  build-depends:      base          >= 4.11 && <= 5.0
-                    , generic-optics
-                    , optics-core
-                    , HUnit
-
-  default-language:   Haskell2010
-  ghc-options:        -Wall
-
-test-suite doctests
-  default-language:   Haskell2010
-  type:               exitcode-stdio-1.0
-  ghc-options:        -threaded
-  main-is:            doctest.hs
-  build-depends:      base >4 && <5, doctest
-  hs-source-dirs:     examples
+cabal-version:        >= 1.10+name:                 generic-optics+version:              2.2.1.0+x-revision:           2+synopsis:             Generically derive traversals, lenses and prisms.+description:          This library uses GHC.Generics to derive efficient optics (traversals, lenses and prisms) for algebraic data types in a type-directed way, with a focus on good type inference and error messages when possible.+                      .+                      The library exposes an @<https://hackage.haskell.org/package/optics optics>@ interface. For a van Laarhoven interface, see+                      @<https://hackage.haskell.org/package/generic-lens generic-lens>@.++homepage:             https://github.com/kcsongor/generic-lens+license:              BSD3+license-file:         LICENSE+author:               Csongor Kiss+maintainer:           kiss.csongor.kiss@gmail.com+category:             Generics, Records, Lens+build-type:           Simple++tested-with:+  GHC == 9.8.1+  GHC == 9.6.3+  GHC == 9.4.8+  GHC == 9.2.8+  GHC == 9.0.2+  GHC == 8.10.7+  GHC == 8.8.4+  GHC == 8.6.5+  GHC == 8.4.4++extra-source-files:   examples/StarWars.hs+                    , examples/Examples.hs+                    , ChangeLog.md++library+  exposed-modules:    Data.Generics.Wrapped+                    , Data.Generics.Product+                    , Data.Generics.Product.Any+                    , Data.Generics.Product.Fields+                    , Data.Generics.Product.Param+                    , Data.Generics.Product.Positions+                    , Data.Generics.Product.Subtype+                    , Data.Generics.Product.Typed+                    , Data.Generics.Product.Types+                    , Data.Generics.Product.HList+                    -- , Data.Generics.Labels++                    , Data.Generics.Sum+                    , Data.Generics.Sum.Any+                    , Data.Generics.Sum.Constructors+                    , Data.Generics.Sum.Typed+                    , Data.Generics.Sum.Subtype++  other-modules:      Data.Generics.Internal.Optics++  build-depends:      base        >= 4.11 && < 5+                    , generic-lens-core == 2.2.1.0+                    , optics-core >= 0.2 && < 1.0+                    , text        >= 1.2 && < 1.3 || >= 2.0 && < 2.2++  hs-source-dirs:     src+  default-language:   Haskell2010+  ghc-options:        -Wall++test-suite generic-optics-inspection-tests+  type:               exitcode-stdio-1.0+  hs-source-dirs:     test+  main-is:            Spec.hs+  other-modules:      Util Test24 Test88 Test25 Test40 Test62 Test63 CustomChildren++  build-depends:      base+                    , generic-optics+                    , optics-core+                    , inspection-testing >= 0.2+                    , HUnit++  default-language:   Haskell2010+  ghc-options:        -Wall++test-suite generic-optics-bifunctor+  type:               exitcode-stdio-1.0+  hs-source-dirs:     test+  main-is:            Bifunctor.hs++  build-depends:      base+                    , generic-optics+                    , optics-core+                    , HUnit++  default-language:   Haskell2010+  ghc-options:        -Wall++test-suite generic-optics-syb-tree+  type:               exitcode-stdio-1.0+  hs-source-dirs:     test/syb+  main-is:            Tree.hs++  build-depends:      base+                    , generic-optics+                    , optics-core+                    , HUnit++  default-language:   Haskell2010+  ghc-options:        -Wall++test-suite doctests+  default-language:   Haskell2010+  type:               exitcode-stdio-1.0+  ghc-options:        -threaded+  main-is:            doctest.hs+  build-depends:      base >4 && <5, doctest+  hs-source-dirs:     examples