From 37bd2d471b19a82534e1bfc04c38b5491af7aa54 Mon Sep 17 00:00:00 2001 From: Evgeny Metelkin Date: Tue, 9 Jul 2024 12:50:08 +0300 Subject: [PATCH] update version --- CHANGELOG.md | 6 ++++++ TODO.md | 4 ++-- cases/27-null/src/index.heta | 2 ++ package-lock.json | 2 +- package.json | 2 +- 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b02ebf52..b7581a20 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 0.8.5 + +- fix bug with class names for easy renaming of class by webpack +- support `#forceInsert` action +- support `null` as values of Component properties + ## 0.8.4 - support `defineFunction` in all exports diff --git a/TODO.md b/TODO.md index 68d57d6f..a3ca5636 100644 --- a/TODO.md +++ b/TODO.md @@ -36,8 +36,7 @@ ## features -- support `null` for properties: highlight, heta standard -- AnyUnit for zero numbers +- support `null` for properties: highlight - atStart to exports: Matlab, DBSolve - write reusable `Build` class - alternative solution to substitute "pkg": Node.js 21 https://nodejs.org/api/single-executable-applications.html @@ -47,6 +46,7 @@ ## ideas - support SBML's delay +- AnyUnit for zero numbers - updating properties with `one::s1.assignments.start_ 5.5;` - check and warning if core component was replaced - remove unnecessary rules in export diff --git a/cases/27-null/src/index.heta b/cases/27-null/src/index.heta index 954cf23f..f0ee57e3 100644 --- a/cases/27-null/src/index.heta +++ b/cases/27-null/src/index.heta @@ -16,5 +16,7 @@ p1 .= null; p1 [xxx]= null; p1 {units: null}; +null @Record 'This is title' .= 1; + // exports #export { format: JSON, filepath: output }; diff --git a/package-lock.json b/package-lock.json index c6a85fe8..2e7351b3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "heta-compiler", - "version": "0.8.4", + "version": "0.8.5", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 3578f493..2d557531 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "heta-compiler", - "version": "0.8.4", + "version": "0.8.5", "description": "Programming platform for Quantitative Systems Pharmacology modeling in NodeJS", "main": "src/index.js", "scripts": {