Skip to content

Commit

Permalink
Release version 0.3.2
Browse files Browse the repository at this point in the history
  • Loading branch information
hansec committed Dec 6, 2017
1 parent 76101f9 commit 34f411f
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 0.3.2

### Fixes
* Fix parsing variable definitions containing separators inside strings, fixes [#4](https://github.com/hansec/fortran-language-server/issues/4)
* Fix incorrect variable masking error in functions, fixes [#5](https://github.com/hansec/fortran-language-server/issues/5)
* Do not report intrinsic modules as unknown, fixes [#2](https://github.com/hansec/fortran-language-server/issues/2) and [#3](https://github.com/hansec/fortran-language-server/issues/3)

## 0.3.1

### Improvements
Expand Down
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ in the ``root_dir`` directory.

**Setup module search paths:**

By default all files with the suffix ``f,F,f77,F77,for,FOR,fpp,FPP`` or ``f90,F90,f95,F95,f03,F03,f08,F08`` in the
By default all files with the suffix ``F,F77,F90,F95,F03,F08,FOR,FPP`` (case-insensitive) in the
``root_dir`` directory, specified during initialization, and all its sub-directories are parsed and included in
the project.

Expand Down
2 changes: 1 addition & 1 deletion fortls/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from .langserver import LangServer
from .jsonrpc import JSONRPC2Connection, ReadWriter
from .parse_fortran import process_file, detect_fixed_format
__version__ = '0.3.1'
__version__ = '0.3.2'


def main():
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='0.3.1',
version='0.3.2',

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

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

0 comments on commit 34f411f

Please sign in to comment.