Skip to content

Commit c48a3c0

Browse files
Esbonio Language Server Release v0.14.1
1 parent 2b165a1 commit c48a3c0

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

lib/esbonio/.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.14.0
2+
current_version = 0.14.1
33
commit = False
44
tag = False
55
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(.dev(?P<dev>\d+))?

lib/esbonio/CHANGES.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
v0.14.1 - 2022-09-11
2+
--------------------
3+
4+
Fixes
5+
^^^^^
6+
7+
- ``textDocument/documentSymbol`` requests should no longer fail on substitution definitions. (`#448 <https://github.com/swyddfa/esbonio/issues/448>`_)
8+
9+
110
v0.14.0 - 2022-07-31
211
--------------------
312

lib/esbonio/changes/448.fix.rst

Lines changed: 0 additions & 1 deletion
This file was deleted.

lib/esbonio/esbonio/lsp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@
5858
from .rst import RstLanguageServer
5959
from .symbols import SymbolVisitor
6060

61-
__version__ = "0.14.0"
61+
__version__ = "0.14.1"
6262

6363
__all__ = [
6464
"CompletionContext",

lib/esbonio/setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
[metadata]
33
name = esbonio
4-
version = 0.14.0
4+
version = 0.14.1
55
description = A Language Server for Sphinx projects.
66
long_description = file:README.md
77
long_description_content_type = text/markdown

0 commit comments

Comments
 (0)