diff --git a/README.md b/README.md
index b69acf33552360207efbc30042d0ab72744a40fc..fe07a51959d39b54eeede0f465429aa32045f47d 100644
--- a/README.md
+++ b/README.md
@@ -46,7 +46,7 @@ Python3 and PyQt5 Client for [uCoin](http://www.ucoin.io) project.
   * The executable is generated in "build" folder, named "sakia"
 
 ### Download latest release
-  * Go to [current release](https://github.com/ucoin-io/sakia/release)
+  * Go to [current release](https://github.com/ucoin-io/sakia/releases)
   * Download corresponding package to your operating system
   * Unzip and start "sakia" :)
   * Join our beta community by contacting us on [uCoin forum](http://forum.ucoin.io/)
diff --git a/appveyor.yml b/appveyor.yml
index cc5b18d86b6bf8def98178e94919097d3f8ab82e..17eadf0b12e6675c9decd3f5f1c4fc8047d34eb4 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -44,6 +44,7 @@ artifacts:
     name: sakia-win$(PYTHON_ARCH)
 # upload to releases
 deploy:
+  tag: $(APPVEYOR_REPO_TAG_NAME)
   release: sakia $(APPVEYOR_REPO_TAG_NAME)
   provider: GitHub
   auth_token:
diff --git a/setup.py b/setup.py
index 8b96d572dcc2c86173f3f1beab47108274ee7a5a..64b2d9bfc3774106ae42b219581e0bec39200625 100644
--- a/setup.py
+++ b/setup.py
@@ -116,7 +116,7 @@ target = Executable(
 # creation du setup
 setup(
     name = "sakia",
-    version = "0.11.0",
+    version = "0.11.1",
     description = "UCoin client",
     author = "Inso",
     options = {"build_exe": options},
diff --git a/src/sakia/__init__.py b/src/sakia/__init__.py
index e3efc97e3b1a25481ae082c53c9038743e264cc7..b80290891bc40eae9de92bb06a0b0fd5405f0a45 100644
--- a/src/sakia/__init__.py
+++ b/src/sakia/__init__.py
@@ -1,2 +1,2 @@
-__version_info__ = ('0', '11', '0')
+__version_info__ = ('0', '11', '1')
 __version__ = '.'.join(__version_info__)