From 2fdabf33d12935b4dda979b3b6bd37859b69d299 Mon Sep 17 00:00:00 2001 From: Rahul Krishna Date: Tue, 14 Jul 2026 12:07:32 -0400 Subject: [PATCH] chore(release): 1.4.1 --- CHANGELOG.md | 15 +++++++++++++++ pyproject.toml | 2 +- uv.lock | 2 +- 3 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c16ae5..c130431 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [v1.4.1] - 2026-07-14 + +### Fixed +- **Module-level functions are now resolvable through `get_method` (Python and TypeScript, both + backends).** Previously `get_method` searched class scope only, so module-level functions were + unreachable and `get_all_callers`/`get_all_callees` returned a silent empty result for them even + when the call graph contained the edges. The scope argument now accepts a module name as well as + a qualified class name; callers/callees, `get_method_parameters`, and comment lookups inherit the + fix. (#250, #251) +- **Java lookups no longer crash on a miss.** `get_method`/`get_class`/`get_java_file` are honestly + annotated `... | None` (ABC, both backends, and the public facade), `get_method_parameters` + returns an empty list instead of raising `AttributeError` for an unknown class or signature, and + all internal call-graph/comment lookups are guarded. No behavior change on successful lookups. + (#252) + ## [v1.4.0] - 2026-06-27 ### Changed diff --git a/pyproject.toml b/pyproject.toml index 999b368..fb0411d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "cldk" -version = "1.4.0" +version = "1.4.1" description = "The official Python SDK for Codellm-Devkit." readme = "README.md" license = { text = "Apache-2.0" } diff --git a/uv.lock b/uv.lock index 1681ba5..5cc5ec1 100644 --- a/uv.lock +++ b/uv.lock @@ -300,7 +300,7 @@ wheels = [ [[package]] name = "cldk" -version = "1.3.0" +version = "1.4.1" source = { editable = "." } dependencies = [ { name = "clang" },