Skip to content

Commit 4449f9e

Browse files
committed
1.0.2
1 parent 93c5ff7 commit 4449f9e

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

changelog.md

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

3+
## [1.0.2] - 2025/10/03 - Hotfixes and github actions
4+
5+
### Packaging
6+
7+
- use Github Actions to build all files: OdooLS binaries, Vsix and Pycharm plugin. Removing the dependency on cross-rs to build executables.
8+
9+
### Fixes
10+
11+
- Fix starting file version number for PyCharm, that is starting at 0, while vscode is starting at 1
12+
- Fix crash of package creation on custom tree
13+
- Fix crash on Odoo > 19 that happen if werkzeug is installed and up-to-date
14+
- Remove panic on missing `__init__.py` file for custom entry creation, happening if user removed/renamed the file during the initialization of the server, and warn it instead
15+
16+
317
## [1.0.1] - 2025/09/17 - Day 1 fixes
418

519
### Fixes

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.1"
3+
version = "1.0.2"
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.1";
6+
pub const EXTENSION_VERSION: &str = "1.0.2";
77

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

0 commit comments

Comments
 (0)