Skip to content

Commit 6d67532

Browse files
committed
0.6.2
1 parent 69f8c8e commit 6d67532

File tree

4 files changed

+16
-3
lines changed

4 files changed

+16
-3
lines changed

changelog.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## 0.6.2 - 2025/28/04 - Bugfixs
4+
5+
### Fixs
6+
7+
- Fix crash on empty odoo path
8+
- Fix crash while autocomplete on an empty file
9+
- Fix crash on autocompletion in some wase where the needed files are not built already
10+
- Fix crash on module search that could return namespaces instead of modules
11+
- Fix diagnostics range in manifest depends
12+
- Add missing error code in error_code.md
13+
- Fix crash on lazy loading invalid `__all__` variable
14+
- Clean some logs
15+
316
## 0.6.1 - 2025/24/04 - File cache option and bugfixs
417

518
### Key features

server/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "odoo_ls_server"
3-
version = "0.6.1"
3+
version = "0.6.2"
44
edition = "2021"
55
authors = ["Odoo"]
66
readme = "../README.md"

server/src/constants.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use core::fmt;
44
use byteyarn::{yarn, Yarn};
55

66
pub const EXTENSION_NAME: &str = "Odoo";
7-
pub const EXTENSION_VERSION: &str = "0.6.1";
7+
pub const EXTENSION_VERSION: &str = "0.6.2";
88

99
pub const DEBUG_ODOO_BUILDER: bool = false;
1010
pub const DEBUG_MEMORY: bool = false;

vscode/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "odoo",
33
"displayName": "Odoo",
44
"description": "Language Server for Odoo projects",
5-
"version": "0.6.1",
5+
"version": "0.6.2",
66
"publisher": "Odoo",
77
"repository": {
88
"type": "git",

0 commit comments

Comments
 (0)