Skip to content

Commit

Permalink
Release version 1.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
hansec committed May 28, 2019
1 parent 6635cdc commit 414f988
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 3 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 1.9.0

### Improvements
* Add support for USE statement renaming requests, ref [#109](https://github.com/hansec/fortran-language-server/issues/109)
* Add support for argument information in variable hover requests, fixes [#107](https://github.com/hansec/fortran-language-server/issues/107)
* Add support for disabling snippets in autocomplete results, fixes [#112](https://github.com/hansec/fortran-language-server/issues/112)
* Prevent file AST updates on Open/Close requests when contents have not changed, ref [#105](https://github.com/hansec/fortran-language-server/issues/105)
* Reduce unnecessary parsing with single line file changes
* Debugging: Add support for printing full result object

### Fixes
* Remove required space between "DOUBLE PRECISION" and "DOUBLE COMPLEX" definitions, fixes [#110](https://github.com/hansec/fortran-language-server/issues/110)
* Fix requests when a user-defined type variable has the same name as a defined type used in that scope

## 1.8.2

### 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.8.2'
__version__ = '1.9.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.8.2',
version='1.9.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.8.2.tar.gz',
download_url = 'https://github.com/hansec/fortran-language-server/archive/v1.9.0.tar.gz',

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

0 comments on commit 414f988

Please sign in to comment.