diff options
author | rprecenth <> | 2021-01-13 13:10:00 (GMT) |
---|---|---|
committer | hdiff <hdiff@hdiff.luite.com> | 2021-01-13 13:10:00 (GMT) |
commit | 6d78a166d0772bc1dca92e554d1a6d5e5ed17290 (patch) | |
tree | a7acf51411c201077439b109d2d0345e1495fd13 | |
parent | 2750468ec584ec938d92e69d4b200a62442ea9ef (diff) |
version 0.3.0.10.3.0.1
-rw-r--r-- | glicko.cabal | 4 | ||||
-rw-r--r-- | src/Ranking/Glicko.hs | 2 | ||||
-rw-r--r-- | src/Ranking/Glicko/Core.hs | 2 | ||||
-rw-r--r-- | src/Ranking/Glicko/Inference.hs | 2 | ||||
-rw-r--r-- | src/Ranking/Glicko/Types.hs | 2 |
5 files changed, 6 insertions, 6 deletions
diff --git a/glicko.cabal b/glicko.cabal index 35acc79..86b3dcd 100644 --- a/glicko.cabal +++ b/glicko.cabal @@ -2,7 +2,7 @@ -- documentation, see http://haskell.org/cabal/users-guide/ name: glicko -version: 0.3.0.0 +version: 0.3.0.1 synopsis: Glicko-2 implementation in Haskell. description: Implementation of the rating algorithm Glicko-2 by Professor Mark E. Glickman @@ -12,7 +12,7 @@ description: license: GPL-3 license-file: LICENSE author: Rasmus Précenth -maintainer: prillan91@gmail.com +maintainer: rasmus@precenth.eu -- copyright: category: Math build-type: Simple diff --git a/src/Ranking/Glicko.hs b/src/Ranking/Glicko.hs index b066a42..7af53d3 100644 --- a/src/Ranking/Glicko.hs +++ b/src/Ranking/Glicko.hs @@ -1,7 +1,7 @@ {-| Module : Ranking.Glicko License : GPL-3 -Maintainer : prillan91@gmail.com +Maintainer : rasmus@precenth.eu Stability : experimental -} module Ranking.Glicko diff --git a/src/Ranking/Glicko/Core.hs b/src/Ranking/Glicko/Core.hs index 8486242..b8a0301 100644 --- a/src/Ranking/Glicko/Core.hs +++ b/src/Ranking/Glicko/Core.hs @@ -2,7 +2,7 @@ {-| Module : Ranking.Glicko.Core License : GPL-3 -Maintainer : prillan91@gmail.com +Maintainer : rasmus@precenth.eu Stability : experimental This module contains the main function, 'compute'. Use this to compute new ratings from diff --git a/src/Ranking/Glicko/Inference.hs b/src/Ranking/Glicko/Inference.hs index 48ce6df..fdba428 100644 --- a/src/Ranking/Glicko/Inference.hs +++ b/src/Ranking/Glicko/Inference.hs @@ -1,7 +1,7 @@ {-| Module : Ranking.Glicko.Inference License : GPL-3 -Maintainer : prillan91@gmail.com +Maintainer : rasmus@precenth.eu Stability : experimental This module provides functions for predicting the outcome of a game between two players. diff --git a/src/Ranking/Glicko/Types.hs b/src/Ranking/Glicko/Types.hs index e49b0de..8848d7d 100644 --- a/src/Ranking/Glicko/Types.hs +++ b/src/Ranking/Glicko/Types.hs @@ -1,7 +1,7 @@ {-| Module : Ranking.Glicko.Types License : GPL-3 -Maintainer : prillan91@gmail.com +Maintainer : rasmus@precenth.eu Stability : experimental For examples, see `Ranking.Glicko.Core` and `Ranking.Glicko.Inference`. |