real-dice 0.1.0.1 → 0.1.0.2
raw patch · 3 files changed
+34/−7 lines, 3 filesdep ~basedep ~mtl
Dependency ranges changed: base, mtl
Files
- CHANGELOG.md +7/−2
- real-dice.cabal +22/−3
- test/Main.hs +5/−2
CHANGELOG.md view
@@ -4,7 +4,12 @@ * First version. Released to an eager world! - ## 0.1.0.1 -- 2024-05-17 -* Fix initial bugs and mistakes in documentation+* Fixes initial bugs and mistakes in documentation++## 0.1.0.2 -- 2024-05-18++* Adds wider dependency and version support++* Adds to documentation
real-dice.cabal view
@@ -20,8 +20,27 @@ -- PVP summary: +-+------- breaking API changes -- | | +----- non-breaking API additions -- | | | +--- code changes with no API change-version: 0.1.0.1+version: 0.1.0.2 +tested-with: GHC==9.8.2, + GHC==9.6.4, + GHC==9.4.8,+ GHC==9.2.8,+ GHC==9.2.1,+ GHC==9.0.2,+ GHC==8.10.7,+ GHC==8.8.4,+ GHC==8.6.5,+ GHC==8.4.4,+ GHC==8.2.2,+ GHC==8.0.2,+ GHC==7.10.3,+ GHC==7.8.4,+ GHC==7.6.3,+ GHC==7.4.2,+ GHC==7.2.2,+ GHC==7.0.4+ -- A short (one-line) description of the package. synopsis: Random number generation based on physical media touched by humans@@ -96,8 +115,8 @@ -- other-extensions: -- Other library packages from which modules are imported.- build-depends: base >=4.18.2.0 && <= 4.19.1.0,- mtl >= 2.3.1 && < 2.4,+ build-depends: base >=4.16.0.0 && <= 4.19.1.0,+ mtl >= 2.2.2 && < 2.4, primes >= 0.2.1 && < 0.3 -- Directories containing source files.
test/Main.hs view
@@ -8,8 +8,11 @@ -- | Run the test suite --- | Currently this consists of QuickCheck tests, along with a guard that will--- cause the test suite to fail if any of the individual tests fail+-- | In general, functions will either be tested using QuickCheck in this suite+-- or using Docutest in the files themselves, but not both++-- | This suite of QuickCheck tests contains a guard that will cause the test+-- `suite to fail if any of the individual tests fail main :: IO () main = do putStrLn "Running test suite!"