creatur 5.9.0 → 5.9.1
raw patch · 37 files changed
+40/−40 lines, 37 filesdep ~timePVP ok
version bump matches the API change (PVP)
Dependency ranges changed: time
API changes (from Hackage documentation)
Files
- creatur.cabal +4/−4
- src/ALife/Creatur.hs +1/−1
- src/ALife/Creatur/Checklist.hs +1/−1
- src/ALife/Creatur/Clock.hs +1/−1
- src/ALife/Creatur/Counter.hs +1/−1
- src/ALife/Creatur/Daemon.hs +1/−1
- src/ALife/Creatur/Database.hs +1/−1
- src/ALife/Creatur/Database/CachedFileSystem.hs +1/−1
- src/ALife/Creatur/Database/CachedFileSystemInternal.hs +1/−1
- src/ALife/Creatur/Database/FileSystem.hs +1/−1
- src/ALife/Creatur/Genetics/Analysis.hs +1/−1
- src/ALife/Creatur/Genetics/BRGCBool.hs +1/−1
- src/ALife/Creatur/Genetics/BRGCWord16.hs +1/−1
- src/ALife/Creatur/Genetics/BRGCWord8.hs +1/−1
- src/ALife/Creatur/Genetics/Diploid.hs +1/−1
- src/ALife/Creatur/Genetics/Recombination.hs +1/−1
- src/ALife/Creatur/Genetics/Reproduction/Sexual.hs +1/−1
- src/ALife/Creatur/Genetics/Reproduction/SimplifiedSexual.hs +1/−1
- src/ALife/Creatur/Logger.hs +1/−1
- src/ALife/Creatur/Logger/SimpleLogger.hs +1/−1
- src/ALife/Creatur/Logger/SimpleRotatingLogger.hs +1/−1
- src/ALife/Creatur/Namer.hs +1/−1
- src/ALife/Creatur/Persistent.hs +1/−1
- src/ALife/Creatur/Task.hs +1/−1
- src/ALife/Creatur/Universe.hs +1/−1
- src/ALife/Creatur/Util.hs +1/−1
- test/ALife/Creatur/CounterQC.hs +1/−1
- test/ALife/Creatur/Database/CachedFileSystemQC.hs +1/−1
- test/ALife/Creatur/Database/FileSystemQC.hs +1/−1
- test/ALife/Creatur/Genetics/BRGCBoolQC.hs +1/−1
- test/ALife/Creatur/Genetics/BRGCWord16QC.hs +1/−1
- test/ALife/Creatur/Genetics/BRGCWord8QC.hs +1/−1
- test/ALife/Creatur/Genetics/DiploidQC.hs +1/−1
- test/ALife/Creatur/Genetics/RecombinationQC.hs +1/−1
- test/ALife/Creatur/PersistentQC.hs +1/−1
- test/ALife/Creatur/UtilQC.hs +1/−1
- test/TestAll.hs +1/−1
creatur.cabal view
@@ -1,5 +1,5 @@ Name: creatur-Version: 5.9.0+Version: 5.9.1 Stability: experimental Synopsis: Framework for artificial life experiments. Description: A software framework for automating experiments@@ -21,7 +21,7 @@ Category: AI License: BSD3 License-file: LICENSE-Copyright: (c) Amy de Buitléir 2010-2014+Copyright: (c) Amy de Buitléir 2010-2015 Homepage: https://github.com/mhwombat/creatur Bug-reports: https://github.com/mhwombat/creatur/issues Author: Amy de Buitléir@@ -36,7 +36,7 @@ source-repository this type: git location: https://github.com/mhwombat/creatur.git- tag: 5.9.0+ tag: 5.9.1 library GHC-Options: -Wall -fno-warn-orphans@@ -84,7 +84,7 @@ process ==1.2.*, random ==1.1.*, split ==0.2.*,- time ==1.4.*,+ time ==1.4.* || ==1.5.*, transformers ==0.4.*, unix ==2.7.*, zlib ==0.5.*
src/ALife/Creatur.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur--- Copyright : (c) Amy de Buitléir 2012-2014+-- Copyright : (c) Amy de Buitléir 2012-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Checklist.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Checklist--- Copyright : (c) Amy de Buitléir 2013-2014+-- Copyright : (c) Amy de Buitléir 2013-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Clock.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Clock--- Copyright : (c) Amy de Buitléir 2012-2014+-- Copyright : (c) Amy de Buitléir 2012-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Counter.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Counter--- Copyright : (c) Amy de Buitléir 2012-2014+-- Copyright : (c) Amy de Buitléir 2012-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Daemon.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Daemon--- Copyright : (c) Amy de Buitléir 2012-2014+-- Copyright : (c) Amy de Buitléir 2012-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Database.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Database--- Copyright : (c) Amy de Buitléir 2012-2014+-- Copyright : (c) Amy de Buitléir 2012-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Database/CachedFileSystem.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Database.CachedFileSystem--- Copyright : (c) Amy de Buitléir 2014+-- Copyright : (c) Amy de Buitléir 2014-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Database/CachedFileSystemInternal.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Database.CachedFileSystemInternal--- Copyright : (c) Amy de Buitléir 2014+-- Copyright : (c) Amy de Buitléir 2014-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Database/FileSystem.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Database.FileSystem--- Copyright : (c) Amy de Buitléir 2012-2014+-- Copyright : (c) Amy de Buitléir 2012-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Genetics/Analysis.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Genetics.Analysis--- Copyright : (c) Amy de Buitléir 2013-2014+-- Copyright : (c) Amy de Buitléir 2013-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Genetics/BRGCBool.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Genetics.BRGCBool--- Copyright : (c) Amy de Buitléir 2013-2014+-- Copyright : (c) Amy de Buitléir 2013-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Genetics/BRGCWord16.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Genetics.BRGCWord16--- Copyright : (c) Amy de Buitléir 2014+-- Copyright : (c) Amy de Buitléir 2014-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Genetics/BRGCWord8.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Genetics.BRGCWord8--- Copyright : (c) Amy de Buitléir 2013-2014+-- Copyright : (c) Amy de Buitléir 2013-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Genetics/Diploid.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Genetics.Diploid--- Copyright : (c) Amy de Buitléir 2013-2014+-- Copyright : (c) Amy de Buitléir 2013-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Genetics/Recombination.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Genetics.Recombination--- Copyright : (c) Amy de Buitléir 2011-2014+-- Copyright : (c) Amy de Buitléir 2011-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Genetics/Reproduction/Sexual.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Genetics.Reproduction.Sexual--- Copyright : (c) Amy de Buitléir 2012-2014+-- Copyright : (c) Amy de Buitléir 2012-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Genetics/Reproduction/SimplifiedSexual.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Genetics.Reproduction.SimplifiedSexual--- Copyright : (c) Amy de Buitléir 2012-2014+-- Copyright : (c) Amy de Buitléir 2012-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Logger.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Logger--- Copyright : (c) Amy de Buitléir 2011-2014+-- Copyright : (c) Amy de Buitléir 2011-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Logger/SimpleLogger.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Logger.SimpleLogger--- Copyright : (c) Amy de Buitléir 2011-2014+-- Copyright : (c) Amy de Buitléir 2011-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Logger/SimpleRotatingLogger.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Logger.SimpleRotatingLogger--- Copyright : (c) Amy de Buitléir 2011-2014+-- Copyright : (c) Amy de Buitléir 2011-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Namer.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Namer--- Copyright : (c) Amy de Buitléir 2012-2014+-- Copyright : (c) Amy de Buitléir 2012-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Persistent.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Persistent--- Copyright : (c) Amy de Buitléir 2012-2014+-- Copyright : (c) Amy de Buitléir 2012-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Task.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Task--- Copyright : (c) Amy de Buitléir 2012-2014+-- Copyright : (c) Amy de Buitléir 2012-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Universe.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Universe--- Copyright : (c) Amy de Buitléir 2012-2014+-- Copyright : (c) Amy de Buitléir 2012-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
src/ALife/Creatur/Util.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Util--- Copyright : (c) Amy de Buitléir 2011-2014+-- Copyright : (c) Amy de Buitléir 2011-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
test/ALife/Creatur/CounterQC.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.CounterQC--- Copyright : (c) Amy de Buitléir 2012-2014+-- Copyright : (c) Amy de Buitléir 2012-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
test/ALife/Creatur/Database/CachedFileSystemQC.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Database.CachedFileSystemQC--- Copyright : (c) Amy de Buitléir 2014+-- Copyright : (c) Amy de Buitléir 2014-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
test/ALife/Creatur/Database/FileSystemQC.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Database.FileSystemQC--- Copyright : (c) Amy de Buitléir 2012-2014+-- Copyright : (c) Amy de Buitléir 2012-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
test/ALife/Creatur/Genetics/BRGCBoolQC.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Genetics.BRGCBoolQC--- Copyright : (c) Amy de Buitléir 2013-2014+-- Copyright : (c) Amy de Buitléir 2013-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
test/ALife/Creatur/Genetics/BRGCWord16QC.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Genetics.BRGCWord16QC--- Copyright : (c) Amy de Buitléir 2014+-- Copyright : (c) Amy de Buitléir 2014-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
test/ALife/Creatur/Genetics/BRGCWord8QC.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Genetics.BRGCWord8QC--- Copyright : (c) Amy de Buitléir 2013-2014+-- Copyright : (c) Amy de Buitléir 2013-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
test/ALife/Creatur/Genetics/DiploidQC.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Genetics.DiploidQC--- Copyright : (c) Amy de Buitléir 2013-2014+-- Copyright : (c) Amy de Buitléir 2013-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
test/ALife/Creatur/Genetics/RecombinationQC.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.Genetics.RecombinationQC--- Copyright : (c) Amy de Buitléir 2012-2014+-- Copyright : (c) Amy de Buitléir 2012-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
test/ALife/Creatur/PersistentQC.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.PersistentQC--- Copyright : (c) Amy de Buitléir 2012-2014+-- Copyright : (c) Amy de Buitléir 2012-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
test/ALife/Creatur/UtilQC.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : ALife.Creatur.UtilQC--- Copyright : (c) Amy de Buitléir 2012-2014+-- Copyright : (c) Amy de Buitléir 2012-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental
test/TestAll.hs view
@@ -1,7 +1,7 @@ ------------------------------------------------------------------------ -- | -- Module : Main--- Copyright : (c) Amy de Buitléir 2012-2014+-- Copyright : (c) Amy de Buitléir 2012-2015 -- License : BSD-style -- Maintainer : amy@nualeargais.ie -- Stability : experimental