Skip to content

Commit 9b977ce

Browse files
committed
1.0.4
1 parent a356c6f commit 9b977ce

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

changelog.md

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

3+
## [1.0.4] - 2025/10/31 - Fix Borrow error
4+
5+
### Zed
6+
7+
- Fix the update script to use ".tar.gz" compression instead of ".zip" on linux and darwin computers.
8+
9+
### Fixes
10+
11+
- crash fix: Borrow error on some "on-the-fly" builds.
12+
- Fix the rust version used to compile the server to 1.91 and put this requirement in cargo.toml
13+
314
## [1.0.3] - 2025/10/26 - Fix out-of-sync issues
415

516
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.

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 = "1.0.3"
3+
version = "1.0.4"
44
edition = "2024"
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
@@ -3,7 +3,7 @@ use core::fmt;
33

44

55
pub const EXTENSION_NAME: &str = "Odoo";
6-
pub const EXTENSION_VERSION: &str = "1.0.3";
6+
pub const EXTENSION_VERSION: &str = "1.0.4";
77

88
pub const MAX_WATCHED_FILES_UPDATES_BEFORE_RESTART: u32 = 10;
99

0 commit comments

Comments
 (0)