Skip to content
Merged

1.0.4 #465

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -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.
Expand Down
2 changes: 1 addition & 1 deletion server/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "odoo_ls_server"
version = "1.0.3"
version = "1.0.4"
edition = "2024"
authors = ["Odoo"]
readme = "../README.md"
Expand Down
2 changes: 1 addition & 1 deletion server/src/constants.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down