packages feed

Cabal revisions of hw-int-0.0.2.0

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

revision 1
-cabal-version: 2.2--name:                   hw-int-version:                0.0.2.0-synopsis:               Additional facilities for Integers-description:            Additional faciltiies for Integers. Please see README.md-category:               Data-stability:              Experimental-homepage:               http://github.com/haskell-works/hw-int#readme-bug-reports:            https://github.com/haskell-works/hw-int/issues-author:                 John Ky-maintainer:             newhoggy@gmail.com-copyright:              2016-2020 John Ky-license:                BSD-3-Clause-license-file:           LICENSE-tested-with:            GHC == 8.10.1, GHC == 8.8.3, GHC == 8.6.5, GHC == 8.4.4-build-type:             Simple-extra-source-files:     README.md--source-repository head-  type: git-  location: https://github.com/haskell-works/hw-int--common base                       { build-depends: base                       >= 4.11       && < 5      }--common doctest                    { build-depends: doctest                    >= 0.16.2     && < 0.17   }-common doctest-discover           { build-depends: doctest-discover           >= 0.2        && < 0.3    }-common hedgehog                   { build-depends: hedgehog                   >= 0.6        && < 1.1    }-common hspec                      { build-depends: hspec                      >= 2.7.1      && < 3      }-common hw-hedgehog                { build-depends: hw-hedgehog                >= 0.1.0.3    && < 0.2    }-common hw-hspec-hedgehog          { build-depends: hw-hspec-hedgehog          >= 0.1.0.7    && < 0.2    }--common config-  default-language:     Haskell2010-  ghc-options:          -Wall -O2--common hw-int-  build-depends:        hw-int--library-  import:               base, config-  exposed-modules:      HaskellWorks.Data.Int-                        HaskellWorks.Data.Int.Narrow-                        HaskellWorks.Data.Int.Narrow.Narrow16-                        HaskellWorks.Data.Int.Narrow.Narrow32-                        HaskellWorks.Data.Int.Narrow.Narrow64-                        HaskellWorks.Data.Int.Narrow.Narrow8-                        HaskellWorks.Data.Int.Signed-                        HaskellWorks.Data.Int.Unsigned-                        HaskellWorks.Data.Int.Widen-                        HaskellWorks.Data.Int.Widen.Widen16-                        HaskellWorks.Data.Int.Widen.Widen32-                        HaskellWorks.Data.Int.Widen.Widen64-                        HaskellWorks.Data.Int.Widen.Widen8-  other-modules:        Paths_hw_int-  autogen-modules:      Paths_hw_int-  hs-source-dirs:       src--test-suite hw-int-test-  import:               base, config-                      , hedgehog-                      , hspec-                      , hw-hedgehog-                      , hw-hspec-hedgehog-  type:                 exitcode-stdio-1.0-  main-is:              Spec.hs-  hs-source-dirs:       test-  ghc-options:          -threaded -rtsopts -with-rtsopts=-N -Wall-  build-tool-depends:   hspec-discover:hspec-discover-  build-depends:        hw-int--test-suite doctest-  import:               base, config-                      , doctest-                      , doctest-discover-                      , hw-int-  default-language:     Haskell2010-  type:                 exitcode-stdio-1.0-  ghc-options:          -threaded -rtsopts -with-rtsopts=-N-  main-is:              DoctestDriver.hs-  HS-Source-Dirs:       doctest-  build-tool-depends:   doctest-discover:doctest-discover+cabal-version: 2.2
+
+name:                   hw-int
+version:                0.0.2.0
+x-revision: 1
+synopsis:               Additional facilities for Integers
+description:            Additional faciltiies for Integers. Please see README.md
+category:               Data
+stability:              Experimental
+homepage:               http://github.com/haskell-works/hw-int#readme
+bug-reports:            https://github.com/haskell-works/hw-int/issues
+author:                 John Ky
+maintainer:             newhoggy@gmail.com
+copyright:              2016-2020 John Ky
+license:                BSD-3-Clause
+license-file:           LICENSE
+tested-with:            GHC == 8.10.1, GHC == 8.8.3, GHC == 8.6.5, GHC == 8.4.4
+build-type:             Simple
+extra-source-files:     README.md
+
+source-repository head
+  type: git
+  location: https://github.com/haskell-works/hw-int
+
+common base                       { build-depends: base                       >= 4.11       && < 5      }
+
+common doctest                    { build-depends: doctest                    >= 0.16.2     && < 0.19   }
+common doctest-discover           { build-depends: doctest-discover           >= 0.2        && < 0.3    }
+common hedgehog                   { build-depends: hedgehog                   >= 0.6        && < 1.1    }
+common hspec                      { build-depends: hspec                      >= 2.7.1      && < 3      }
+common hw-hedgehog                { build-depends: hw-hedgehog                >= 0.1.0.3    && < 0.2    }
+common hw-hspec-hedgehog          { build-depends: hw-hspec-hedgehog          >= 0.1.0.7    && < 0.2    }
+
+common config
+  default-language:     Haskell2010
+  ghc-options:          -Wall -O2
+
+common hw-int
+  build-depends:        hw-int
+
+library
+  import:               base, config
+  exposed-modules:      HaskellWorks.Data.Int
+                        HaskellWorks.Data.Int.Narrow
+                        HaskellWorks.Data.Int.Narrow.Narrow16
+                        HaskellWorks.Data.Int.Narrow.Narrow32
+                        HaskellWorks.Data.Int.Narrow.Narrow64
+                        HaskellWorks.Data.Int.Narrow.Narrow8
+                        HaskellWorks.Data.Int.Signed
+                        HaskellWorks.Data.Int.Unsigned
+                        HaskellWorks.Data.Int.Widen
+                        HaskellWorks.Data.Int.Widen.Widen16
+                        HaskellWorks.Data.Int.Widen.Widen32
+                        HaskellWorks.Data.Int.Widen.Widen64
+                        HaskellWorks.Data.Int.Widen.Widen8
+  other-modules:        Paths_hw_int
+  autogen-modules:      Paths_hw_int
+  hs-source-dirs:       src
+
+test-suite hw-int-test
+  import:               base, config
+                      , hedgehog
+                      , hspec
+                      , hw-hedgehog
+                      , hw-hspec-hedgehog
+  type:                 exitcode-stdio-1.0
+  main-is:              Spec.hs
+  hs-source-dirs:       test
+  ghc-options:          -threaded -rtsopts -with-rtsopts=-N -Wall
+  build-tool-depends:   hspec-discover:hspec-discover
+  build-depends:        hw-int
+
+test-suite doctest
+  import:               base, config
+                      , doctest
+                      , doctest-discover
+                      , hw-int
+  default-language:     Haskell2010
+  type:                 exitcode-stdio-1.0
+  ghc-options:          -threaded -rtsopts -with-rtsopts=-N
+  main-is:              DoctestDriver.hs
+  HS-Source-Dirs:       doctest
+  build-tool-depends:   doctest-discover:doctest-discover
revision 2
 
 name:                   hw-int
 version:                0.0.2.0
-x-revision: 1
+x-revision: 2
 synopsis:               Additional facilities for Integers
 description:            Additional faciltiies for Integers. Please see README.md
 category:               Data
 copyright:              2016-2020 John Ky
 license:                BSD-3-Clause
 license-file:           LICENSE
-tested-with:            GHC == 8.10.1, GHC == 8.8.3, GHC == 8.6.5, GHC == 8.4.4
+tested-with:            GHC == 9.2.2, GHC == 9.0.2, GHC == 8.10.7, GHC == 8.8.4, GHC == 8.6.5
 build-type:             Simple
 extra-source-files:     README.md
 
 
 common base                       { build-depends: base                       >= 4.11       && < 5      }
 
-common doctest                    { build-depends: doctest                    >= 0.16.2     && < 0.19   }
+common doctest                    { build-depends: doctest                    >= 0.16.2     && < 0.21   }
 common doctest-discover           { build-depends: doctest-discover           >= 0.2        && < 0.3    }
-common hedgehog                   { build-depends: hedgehog                   >= 0.6        && < 1.1    }
+common hedgehog                   { build-depends: hedgehog                   >= 0.6        && < 1.2    }
 common hspec                      { build-depends: hspec                      >= 2.7.1      && < 3      }
 common hw-hedgehog                { build-depends: hw-hedgehog                >= 0.1.0.3    && < 0.2    }
-common hw-hspec-hedgehog          { build-depends: hw-hspec-hedgehog          >= 0.1.0.7    && < 0.2    }
+common hw-hspec-hedgehog          { build-depends: hw-hspec-hedgehog          >= 0.1.1.1    && < 0.2    }
 
 common config
   default-language:     Haskell2010
revision 3
 
 name:                   hw-int
 version:                0.0.2.0
-x-revision: 2
+x-revision: 3
 synopsis:               Additional facilities for Integers
 description:            Additional faciltiies for Integers. Please see README.md
 category:               Data
 
 common doctest                    { build-depends: doctest                    >= 0.16.2     && < 0.21   }
 common doctest-discover           { build-depends: doctest-discover           >= 0.2        && < 0.3    }
-common hedgehog                   { build-depends: hedgehog                   >= 0.6        && < 1.2    }
+common hedgehog                   { build-depends: hedgehog                   >= 0.6        && < 1.3    }
 common hspec                      { build-depends: hspec                      >= 2.7.1      && < 3      }
 common hw-hedgehog                { build-depends: hw-hedgehog                >= 0.1.0.3    && < 0.2    }
 common hw-hspec-hedgehog          { build-depends: hw-hspec-hedgehog          >= 0.1.1.1    && < 0.2    }
revision 4
 
 name:                   hw-int
 version:                0.0.2.0
-x-revision: 3
+x-revision: 4
 synopsis:               Additional facilities for Integers
 description:            Additional faciltiies for Integers. Please see README.md
 category:               Data
 
 common base                       { build-depends: base                       >= 4.11       && < 5      }
 
-common doctest                    { build-depends: doctest                    >= 0.16.2     && < 0.21   }
+common doctest                    { build-depends: doctest                    >= 0.16.2     && < 0.23   }
 common doctest-discover           { build-depends: doctest-discover           >= 0.2        && < 0.3    }
-common hedgehog                   { build-depends: hedgehog                   >= 0.6        && < 1.3    }
+common hedgehog                   { build-depends: hedgehog                   >= 0.6        && < 1.5    }
 common hspec                      { build-depends: hspec                      >= 2.7.1      && < 3      }
 common hw-hedgehog                { build-depends: hw-hedgehog                >= 0.1.0.3    && < 0.2    }
 common hw-hspec-hedgehog          { build-depends: hw-hspec-hedgehog          >= 0.1.1.1    && < 0.2    }