From 13bf664506852189621d36d81487a2c2352968b0 Mon Sep 17 00:00:00 2001
From: Chris Hansen <hansec@uw.edu>
Date: Wed, 1 Apr 2020 18:16:47 -0400
Subject: [PATCH] Release version 1.11.1

---
 CHANGELOG.md       | 5 +++++
 fortls/__init__.py | 2 +-
 setup.py           | 4 ++--
 3 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/CHANGELOG.md b/CHANGELOG.md
index 97df80a..b8d3c7f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,8 @@
+## 1.11.1
+
+### Fixes
+* Fix bug with hover requests introduced in v1.11.0, fixes [#159](https://github.com/hansec/fortran-language-server/issues/159)
+
 ## 1.11.0
 
 ### Improvements
diff --git a/fortls/__init__.py b/fortls/__init__.py
index ccd2803..b6f199c 100644
--- a/fortls/__init__.py
+++ b/fortls/__init__.py
@@ -7,7 +7,7 @@
 from .langserver import LangServer
 from .jsonrpc import JSONRPC2Connection, ReadWriter, path_from_uri
 from .parse_fortran import fortran_file, process_file
-__version__ = '1.11.0'
+__version__ = '1.11.1'
 
 
 def error_exit(error_str):
diff --git a/setup.py b/setup.py
index fe8b8ed..9cf7f4e 100644
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,7 @@
     # Versions should comply with PEP440.  For a discussion on single-sourcing
     # the version across setup.py and the project code, see
     # https://packaging.python.org/en/latest/single_source_version.html
-    version='1.11.0',
+    version='1.11.1',
 
     description='FORTRAN Language Server for the Language Server Protocol',
 
@@ -17,7 +17,7 @@
 
     # The project's main homepage.
     url='https://github.com/hansec/fortran-language-server',
-    download_url = 'https://github.com/hansec/fortran-language-server/archive/v1.11.0.tar.gz',
+    download_url = 'https://github.com/hansec/fortran-language-server/archive/v1.11.1.tar.gz',
 
     author='Chris Hansen',
     author_email = 'hansec@uw.edu',