Migration from v0.10 to v0.11
The v0.11 release of Heta compiler improves stability and export consistency (DBSolve, SBML, JSON/YAML/Table), with no major breaking syntax changes for typical models.
The v0.11 version keeps compatibility with the same Heta standard generation used in v0.10 projects.
For full details, see the change log.
See also: Migrate to v0.8, Migrate to v0.9, Migrate to v0.10.
What changed for users
- More robust validation and parsing for process expressions.
- Better DBSolve export behavior for events and
{boundary: true}. - Support for
#hasMetain SBML export. - Fixed
{useUnitsExpr: true}behavior in JSON, YAML, and Table exports. - Security and documentation updates.
How to update your platform
Ensure your current v0.10 project builds without errors.
Update Heta compiler to v0.11 or newer:
bash
npm install -g heta-compiler
heta -v
# should return v0.11.0 or newer- Update
builderVersionin your declaration file.
yaml
# platform.yml
builderVersion: ^0.11.0Or, if you still use JSON declaration:
json
{
"builderVersion": "^0.11.0"
}- Rebuild and validate your exports:
bash
heta build