From 5166c8c8928193d0fae169a385464eb8fe1e0e2b Mon Sep 17 00:00:00 2001 From: Alex Batisse Date: Fri, 2 Jan 2026 19:07:19 +0100 Subject: [PATCH 1/2] docs: Update feature table in README --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index efad509..c1d4192 100644 --- a/README.md +++ b/README.md @@ -14,11 +14,12 @@ Get on\ ## Features -| Feature | Snapcraft | Rockcraft | Charmcraft[^1] | -| :------------------- | :-------: | :-------: | :------------: | -| Diagnostics | ✅ | ✅ | ✅ | -| Symbol documentation | ✅ | ✅ | ✅ | -| Autocompletion | ❌ | ❌ | ❌ | +| Feature | Snapcraft | Rockcraft | Charmcraft[^1] | +| :--------------------- | :-------: | :-------: | :------------: | +| Diagnostics | ✅ | ✅ | ✅ | +| Documentation on hover | ✅ | ✅ | ✅ | +| Symbols | ✅ | ✅ | ✅ | +| Autocompletion | ✅ | ✅ | ✅ | https://github.com/user-attachments/assets/e4b831b5-dcac-4efd-aabb-d3040899b52b From 5b30d24e26ab6ca73ad55979284e7c305819f92a Mon Sep 17 00:00:00 2001 From: Alex Batisse Date: Fri, 2 Jan 2026 19:07:47 +0100 Subject: [PATCH 2/2] chore: Bump version to 0.4.0 --- flake.lock | 6 +++--- flake.nix | 2 +- src/craft_ls/__init__.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/flake.lock b/flake.lock index 67c22c0..92c1b68 100644 --- a/flake.lock +++ b/flake.lock @@ -2,11 +2,11 @@ "nodes": { "nixpkgs": { "locked": { - "lastModified": 1761880412, - "narHash": "sha256-QoJjGd4NstnyOG4mm4KXF+weBzA2AH/7gn1Pmpfcb0A=", + "lastModified": 1767273430, + "narHash": "sha256-kDpoFwQ8GLrPiS3KL+sAwreXrph2KhdXuJzo5+vSLoo=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "a7fc11be66bdfb5cdde611ee5ce381c183da8386", + "rev": "76eec3925eb9bbe193934987d3285473dbcfad50", "type": "github" }, "original": { diff --git a/flake.nix b/flake.nix index 889c5f8..94906f2 100644 --- a/flake.nix +++ b/flake.nix @@ -17,7 +17,7 @@ in { packages.default = pythonPkgs.buildPythonPackage { pname = "craft-ls"; - version = "0.3.3"; + version = "0.4.0"; format = "pyproject"; src = ./.; build-system = [pythonPkgs.hatchling]; diff --git a/src/craft_ls/__init__.py b/src/craft_ls/__init__.py index 5bd7d77..523a22f 100644 --- a/src/craft_ls/__init__.py +++ b/src/craft_ls/__init__.py @@ -1,3 +1,3 @@ """Craft-ls is a language server for *-craft tools.""" -__version__ = "0.3.3" +__version__ = "0.4.0"