Bumped version [ci skip]

This commit is contained in:
Michael Panchenko
2025-05-21 19:17:58 +02:00
parent cbe447c6af
commit 8ed8fce620
3 changed files with 17 additions and 6 deletions
+14 -2
View File
@@ -1,7 +1,19 @@
# 2025-05-19
# Latest
Changes prior to the next official version change will appear here.
# 2025-05-21
**Signficant improvement in symbol finding!**
* Serena core:
* `FindSymbolTool` now can look for symbols by specifying paths to them, not just the symbol name
* Language Servers:
* Fixed `gopls` initialization
* Symbols retrieved through the symbol tree or through overview methods now are linked to their parents
# 2025-05-19
* Serena core:
* Bugfix in `FindSymbolTool` (a bug fixed in LS)
* Fix in `ListDirTool`: Do not ignore files with extensions not understood by the language server, only skip ignored directories
+2 -3
View File
@@ -48,16 +48,15 @@ Language servers provide support for a wide range of programming languages.
With Serena, we provide
* direct, out-of-the-box support for:
* Python
* Java (_Note_: startup is slow, initial startup especially so)
* TypeScript
* TypeScript/Javascript
* PhP
* Go (need to install go and gopls first)
* Rust
* C/C++
* Java (_Note_: startup is slow, initial startup especially so. There seem to be issues with java on macos)
* indirect support (may require some code changes/manual installation) for:
* Ruby (untested)
* C# (untested)
* Rust (untested)
* Kotlin (untested)
* Dart (untested)
+1 -1
View File
@@ -1,4 +1,4 @@
__version__ = "2025-05-19"
__version__ = "2025-05-21"
def serena_root_path() -> str: