diff --git a/README.rst b/README.rst
index 6e0a0308169022e93448395886450ed72767198b..51fc57a947639ab7b6a0440442c14d56730585a6 100755
--- a/README.rst
+++ b/README.rst
@@ -21,7 +21,7 @@ For additional details, see doc/install.rst.
 Usage
 -----
 
-See the `documentation <http://templates.pages.lis-lab.fr/pomad/>`_.
+See the `documentation <http://valentin.emiya.pages.lis-lab.fr/pomad/>`_.
 
 Bugs
 ----
diff --git a/VERSION b/VERSION
index 6eec302096c96f3b65121bf64283ea6f63f11f22..ab59df5e7a1b71ffa776cec62a34f89ca408d279 100755
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-pomad:0.1
+pomad:0.1.1
diff --git a/doc/README.md b/doc/README.md
index 5d2c9e95f0f138053f2d966c3d07e7de1029cab4..3e0fe42f7d7aa23f0c62322c7d65714645f27a53 100755
--- a/doc/README.md
+++ b/doc/README.md
@@ -1,6 +1,6 @@
 If you only want to get the documentation, note that a pre-built
 version for the latest release is available
-[online](http://templates.pages.lis-lab.fr/pomad/).
+[online](http://valentin.emiya.pages.lis-lab.fr/pomad/).
 
 Sphinx is used to generate the API and reference documentation.
 
diff --git a/pomad/__init__.py b/pomad/__init__.py
index 985033fc17438fadcb5362afbc4073e37ace8b44..f980617a297400d5284f9b41cb8a71b344c016a1 100755
--- a/pomad/__init__.py
+++ b/pomad/__init__.py
@@ -11,4 +11,4 @@ from .range_approximation import \
 __all__ = ['direct_svd', 'evd_nystrom',
            'randomized_range_finder', 'adaptive_randomized_range_finder']
 
-__version__ = "0.1"
+__version__ = "0.1.1"
diff --git a/setup.py b/setup.py
index cdf66d11d7fd1327626e0f77253fdd0e55017f61..cb35f7c85078f06ee414363876b790d12e260bca 100755
--- a/setup.py
+++ b/setup.py
@@ -59,7 +59,7 @@ import sys
 NAME = 'pomad'
 DESCRIPTION = 'PrObabilistic MAtrix Decompositions from Halko et al., 2011'
 LICENSE = 'GNU General Public License v3 (GPLv3)'
-URL = 'https://gitlab.lis-lab.fr/templates/{}'.format(NAME)
+URL = 'https://gitlab.lis-lab.fr/valentin.emiya/{}'.format(NAME)
 AUTHOR = 'Valentin Emiya'
 AUTHOR_EMAIL = ('valentin.emiya@lis-lab.fr')
 INSTALL_REQUIRES = ['numpy', 'scipy']