Skip to content

Commit

Permalink
Release version 1.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hansec committed Jul 9, 2019
1 parent 78785ed commit affceaf
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
## 1.10.0

### Improvements
* Initial implementation of preprocessor include file handling, ref [#115](https://github.com/hansec/fortran-language-server/issues/115)
* Add support for specifying file suffixes for preprocessing, ref [#115](https://github.com/hansec/fortran-language-server/issues/115)
* Add support for completion in visibility statements, fixes [#120](https://github.com/hansec/fortran-language-server/issues/120)
* Support "onOpen" requests before a file is written to disk, fixes [#123](https://github.com/hansec/fortran-language-server/issues/123)
* Add support for IMPURE keyword (contributed by @mcocdawc)
* Improve readability by replacing various result arrays with namedtuples

### Fixes
* Fix bug in open string literal detection, fixes [#124](https://github.com/hansec/fortran-language-server/issues/124)
* Fix bug with multiline docstrings that start with a trailing comment, fixes [#118](https://github.com/hansec/fortran-language-server/issues/118)
* Fix symbols types for subroutines and methods in "documentSymbol" and "completion" requests, fixes [#117](https://github.com/hansec/fortran-language-server/issues/117)
* Fix bug where ONLY renaming was not fully tracked in some circumstances
* Fix bug with inline dimension specifications for variables
* Fix accidental message swap in "object not found" and "object not imported" diagnostics
* Fix bug where errors were reported with "module subroutine" and "module function" definitions (no import required)

## 1.9.1

### Fixes
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.9.1'
__version__ = '1.10.0'


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.9.1',
version='1.10.0',

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.9.1.tar.gz',
download_url = 'https://github.com/hansec/fortran-language-server/archive/v1.10.0.tar.gz',

author='Chris Hansen',
author_email = '[email protected]',
Expand Down

0 comments on commit affceaf

Please sign in to comment.