Skip to content

Commit

Permalink
Release version 1.10.3
Browse files Browse the repository at this point in the history
  • Loading branch information
hansec committed Sep 24, 2019
1 parent 818f6b9 commit c81c51c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion fortls/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@
# 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',

long_description=README,

# 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 = '[email protected]',
Expand Down

0 comments on commit c81c51c

Please sign in to comment.