glicko 0.3.0.0 → 0.3.0.1
raw patch · 5 files changed
+6/−6 lines, 5 filesPVP ok
version bump matches the API change (PVP)
API changes (from Hackage documentation)
Files
- glicko.cabal +2/−2
- src/Ranking/Glicko.hs +1/−1
- src/Ranking/Glicko/Core.hs +1/−1
- src/Ranking/Glicko/Inference.hs +1/−1
- src/Ranking/Glicko/Types.hs +1/−1
glicko.cabal view
@@ -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 @@ license: GPL-3 license-file: LICENSE author: Rasmus Précenth-maintainer: prillan91@gmail.com+maintainer: rasmus@precenth.eu -- copyright: category: Math build-type: Simple
src/Ranking/Glicko.hs view
@@ -1,7 +1,7 @@ {-| Module : Ranking.Glicko License : GPL-3-Maintainer : prillan91@gmail.com+Maintainer : rasmus@precenth.eu Stability : experimental -} module Ranking.Glicko
src/Ranking/Glicko/Core.hs view
@@ -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
src/Ranking/Glicko/Inference.hs view
@@ -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.
src/Ranking/Glicko/Types.hs view
@@ -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`.