From 8ed8fce62088e8c423487466cee6be4e2fc8740c Mon Sep 17 00:00:00 2001 From: Michael Panchenko Date: Wed, 21 May 2025 19:17:58 +0200 Subject: [PATCH] Bumped version [ci skip] --- CHANGELOG.md | 16 ++++++++++++++-- README.md | 5 ++--- src/serena/__init__.py | 2 +- 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d40d6d5..1529a84 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/README.md b/README.md index 6995812..56d319d 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/src/serena/__init__.py b/src/serena/__init__.py index d37e1f6..3e1a38d 100644 --- a/src/serena/__init__.py +++ b/src/serena/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2025-05-19" +__version__ = "2025-05-21" def serena_root_path() -> str: