diff --git a/glicko.cabal b/glicko.cabal
--- 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 @@
 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
--- 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
--- 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
--- 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
--- 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`.
