diff --git a/changelog.md b/changelog.md index 2136f9dc..0eca8ce0 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,16 @@ # Changelog +## [1.0.4] - 2025/10/31 - Fix Borrow error + +### Zed + +- Fix the update script to use ".tar.gz" compression instead of ".zip" on linux and darwin computers. + +### Fixes + +- crash fix: Borrow error on some "on-the-fly" builds. +- Fix the rust version used to compile the server to 1.91 and put this requirement in cargo.toml + ## [1.0.3] - 2025/10/26 - Fix out-of-sync issues We rewrote the thread pool of OdooLS to get rid most of the last known crashes, as they are nearly all linked to out-of-sync issues and the way the thread pool was greedily delaying important tasks. diff --git a/server/Cargo.toml b/server/Cargo.toml index ab1fd22d..5b4c41a4 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "odoo_ls_server" -version = "1.0.3" +version = "1.0.4" edition = "2024" authors = ["Odoo"] readme = "../README.md" diff --git a/server/src/constants.rs b/server/src/constants.rs index 27e98d9b..c8b0f027 100644 --- a/server/src/constants.rs +++ b/server/src/constants.rs @@ -3,7 +3,7 @@ use core::fmt; pub const EXTENSION_NAME: &str = "Odoo"; -pub const EXTENSION_VERSION: &str = "1.0.3"; +pub const EXTENSION_VERSION: &str = "1.0.4"; pub const MAX_WATCHED_FILES_UPDATES_BEFORE_RESTART: u32 = 10;