From 78ac02db169c95d7a77c9f7b1906862ce8d00197 Mon Sep 17 00:00:00 2001 From: Evgeny Metelkin Date: Fri, 9 Feb 2024 15:05:51 +0200 Subject: [PATCH] update version --- README.md | 2 +- changelog.md | 7 +++++++ math.md | 1 - 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7ed6eb4..da0a309 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ **Heta** is a modeling language for quantitative systems pharmacology and systems biology. -The current version is **0.4.4**. +The current version is **0.4.5**. See also the [Heta video tutorial](https://hetalang.github.io/#/resources/?id=lesson-0-introduction) diff --git a/changelog.md b/changelog.md index 5e9db38..34a47bd 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,12 @@ # Change Log +## 0.4.5 + +- use `0`, `1` together with `true`, `false` for boolean +- `#deleteNS` action +- use of `;` everywhere +- update function list: log(x, b) -> logbase(x, b), remove nthRoot(x), hyperbolic functions support + ## 0.4.4 - use `ProcessExpr` of type: A>B diff --git a/math.md b/math.md index 6015dd9..e4d446b 100644 --- a/math.md +++ b/math.md @@ -68,7 +68,6 @@ Here the first operand `b1 < b2` is the boolean expression, then an expression t | pow(x, y) | The power of x to y, x ^ y. | | sign(x) | Compute the sign of a value. | | sqrt(x) | Calculate the square root of a value. | -| nthRoot(x) | 2d root of x | | nthRoot(x, n) | n-th root of x | | square(x)| Compute the square of a value, x * x. | | subtract(x, y) | Subtract two values, x - y. |