From 22ceea4b7e3ff713df71e42521ced3f144ec9dbe Mon Sep 17 00:00:00 2001 From: Chris Hansen Date: Fri, 2 Oct 2020 08:29:46 -0400 Subject: [PATCH] Release version 1.12.0 --- CHANGELOG.md | 9 +++++++++ fortls/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b8d3c7f..9291588 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## 1.12.0 + +### Improvements +* Add support for disabling diagnostics globally or on a per-project basis, ref [PR 163](https://github.com/hansec/fortran-language-server/pull/163) + +### Fixes +* Fix bug with enum declarations, fixes [#167](https://github.com/hansec/fortran-language-server/issues/167) +* Fix typo in "ISHIFT" and "ISHIFTC" intrinsic functions, ref [PR 165](https://github.com/hansec/fortran-language-server/pull/165) + ## 1.11.1 ### Fixes diff --git a/fortls/__init__.py b/fortls/__init__.py index fc01841..599c3e8 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.1' +__version__ = '1.12.0' def error_exit(error_str): diff --git a/setup.py b/setup.py index 9cf7f4e..ac7ae30 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.1', + version='1.12.0', 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.1.tar.gz', + download_url = 'https://github.com/hansec/fortran-language-server/archive/v1.12.0.tar.gz', author='Chris Hansen', author_email = 'hansec@uw.edu',