- SymbolKind and CompletionItemKind now support `Property`. Support is still a bit finicky, and I'm not sure whether it's Jedi's issue or an issue with jedi-language-server at this time. - `jedi_utils.line_column` now ensures that line length never falls below 0. Resolves <https://github.com/pappasam/jedi-language-server/issues/74>
0.25.3
Changed
- Relax version constraints for `docstring-to-markdown` to be compatible with all versions below `1.0`. Author confirms there won't be breaking changes until at least then: <https://github.com/pappasam/jedi-language-server/issues/68#issuecomment-778844918>
0.25.2
Fixed
- Markdown-formatted text that cannot be converted is now surrounded by fences - An edge case where markup_kind variable is a string, and not MarkupKind, is properly handled
0.25.1
Fixed
- Bug where client-supported markupkind wasn't being properly converted to `MarkupKind`, which caused problems when relying on client-provided defaults.
0.25.0
Added
- When `MarkupKind` is `"markdown"`, convert docstrings from rst to markdown. Currently uses <https://github.com/krassowski/docstring-to-markdown>, thanks krassowski for the awesome library! Special attention has been paid to error handling here to give krassowski leeway to develop the library further.
0.24.0
Added
- `caseInsensitiveCompletion` initialization option added. The user can now tell Jedi to only return case sensitive completions by setting this value to false.
Fixed
- Handle jedi 0.18.0's change from `str` to `pathlib.Path` for workspace symbols.