You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+21Lines changed: 21 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,22 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
6
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
8
+
## [0.6.27][0.6.27] - 2026-03-09
9
+
10
+
### Fixed
11
+
12
+
- Enhanced LaTeX variable extraction to support nested subscripts (e.g. `M_{act_{AS}}`, `M_{buf_{AS}}`)
13
+
- Added `LATEX_VAR_TOKEN_RE` regex to `patterns.py` with one-level nested brace support
14
+
- Replaced `LATEX_RE` with `LATEX_VAR_TOKEN_RE` in `extract_latex_vars()` in `parser.py`
15
+
- SymPy-mangled fallback keys (e.g. `M_{a*(c*t_{A*S})}`) now registered in `py_symbol_map` only, preventing pollution of `_latex_to_py` variable name lookups
16
+
- Fixed `RuntimeError: dictionary changed size during iteration` in `create_latex_mapping()` by collecting fallback keys in a separate dict and merging after the loop
17
+
- Fixed `KeyError` in `SensitivityAnalysis.analyze_symbolic()` and `analyze_numeric()` caused by SymPy-mangled fallback keys being iterated as variable names in `influence.py`
18
+
19
+
### Changed
20
+
21
+
- Updated tutorial notebooks for clarity and consistency
22
+
- Refactored notebook code structure for improved readability
23
+
8
24
## [0.6.26][0.6.26] - 2026-02-21
9
25
10
26
### Fixed
@@ -779,6 +795,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
779
795
780
796
Experimentation phase before formal semantic versioning, establishing core dimensional analysis concepts and data structures.
0 commit comments