Skip to content

Commit c2483ae

Browse files
Esbonio Language Server Release v1.0.0b6
1 parent c342964 commit c2483ae

File tree

8 files changed

+20
-7
lines changed

8 files changed

+20
-7
lines changed

lib/esbonio/CHANGES.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## v1.0.0b6 - 2024-07-19
2+
3+
4+
### Features
5+
6+
- The language server now generates completions for `:external:` roles and their corresponding targets ([#464](https://github.com/swyddfa/esbonio/issues/464))
7+
- Add a `esbonio.sphinx.restart` command which, as the name suggests, allows a client to restart one or more Sphinx processes managed by the server ([#854](https://github.com/swyddfa/esbonio/issues/854))
8+
9+
### Enhancements
10+
11+
- Synchronised scrolling now works with files that have been `.. included::`, as well as autodoc docstrings ([#784](https://github.com/swyddfa/esbonio/issues/784))
12+
- The resolution of sync scrolling has been improved with the webview also better handling the case where the requested line does not exactly match a known source location ([#786](https://github.com/swyddfa/esbonio/issues/786))
13+
14+
### Fixes
15+
16+
- `esbonio.sphinx.buildCommand` settings provided in a `pyproject.toml` file are now resolved relative to the file's location ([#711](https://github.com/swyddfa/esbonio/issues/711))
17+
- The sphinx agent should no longer crash when encountering unexpected config values ([#843](https://github.com/swyddfa/esbonio/issues/843))
18+
19+
120
## v1.0.0b5 - 2024-06-07
221

322

lib/esbonio/changes/464.feature.md

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

lib/esbonio/changes/711.fix.md

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

lib/esbonio/changes/784.enhancement.md

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

lib/esbonio/changes/786.enhancement.md

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

lib/esbonio/changes/843.fix.md

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

lib/esbonio/changes/854.feature.md

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

lib/esbonio/esbonio/server/server.py

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

3434
from .feature import LanguageFeature
3535

36-
__version__ = "1.0.0b5"
36+
__version__ = "1.0.0b6"
3737
T = TypeVar("T")
3838
LF = TypeVar("LF", bound="LanguageFeature")
3939

0 commit comments

Comments
 (0)