From c81c51cab1ba247ec9a5954343a859bd45cdd7fb Mon Sep 17 00:00:00 2001 From: Chris Hansen Date: Tue, 24 Sep 2019 11:16:31 -0400 Subject: [PATCH] Release version 1.10.3 --- CHANGELOG.md | 6 ++++++ fortls/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2ccdd85..d4f5464 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## 1.10.3 + +### Fixes +* Fix parsing bug with spaces in "old-style" kind specifications, fixes [#142](https://github.com/hansec/fortran-language-server/issues/142) +* Fix issue with erroneous sub-word matching in preprocessor macro substitutions, fixes [#141](https://github.com/hansec/fortran-language-server/issues/141) + ## 1.10.2 ### Improvements diff --git a/fortls/__init__.py b/fortls/__init__.py index 4d81897..83a6365 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.10.2' +__version__ = '1.10.3' def error_exit(error_str): diff --git a/setup.py b/setup.py index 33f551a..960bc1e 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.10.2', + version='1.10.3', 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.10.2.tar.gz', + download_url = 'https://github.com/hansec/fortran-language-server/archive/v1.10.3.tar.gz', author='Chris Hansen', author_email = 'hansec@uw.edu',