Skip to content

Commit 0cc3ffe

Browse files
committed
1.0.1
1 parent e12ab17 commit 0cc3ffe

File tree

3 files changed

+10
-2
lines changed

3 files changed

+10
-2
lines changed

changelog.md

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

3+
## [1.0.1] - 2025/09/17 - Day 1 fixes
4+
5+
### Fixes
6+
7+
- Crash that can occur when doing a gotodefinition in an XML file
8+
- Fix origin of gotodefinition for some links in XML files.
9+
- Change back `<br/>` line breaks that sometimes break PyCharm to escaped ` \\\n`
10+
311
## [1.0.0] - 2025/09/16 - Release
412

513
This project is far from finished, but it has reached a level of maturity where we’re introducing two update channels: **Release** and **Pre-release** (Beta).

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

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

0 commit comments

Comments
 (0)