diff --git a/CHANGELOG.md b/CHANGELOG.md index 489a817d..43ede3ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,18 @@ # Change Log +## 0.9.3 + +- build debinan package +- build cholatatey package +- build homebrew package +- update .MSI build +- display error if absolute paths in include and export +- remove `logFormat`, `logPath`, `logLevel`, `logMode` from `platform.yaml` +- display heta version in logs +- write full logs into `build.log` +- add `--log-mode` option to CLI +- rewrite build process to exclude absolute paths + ## 0.9.2 - remove logLevel option from `platform.yaml`, use `--log-level info` instead in CLI diff --git a/build-choco/README.md b/build-choco/README.md index 8362e8ba..91e78a8d 100644 --- a/build-choco/README.md +++ b/build-choco/README.md @@ -24,8 +24,8 @@ Get API key from https://community.chocolatey.org/account ```ps1 choco apikey --key --source https://push.chocolatey.org/ -choco push heta-compiler.0.9.2.nupkg --source https://push.chocolatey.org/ -#choco push heta-compiler.0.9.2.nupkg --source=https://push.chocolatey.org/ --api-key= +choco push heta-compiler.0.9.3.nupkg --source https://push.chocolatey.org/ +#choco push heta-compiler.0.9.3.nupkg --source=https://push.chocolatey.org/ --api-key= ``` ## Installation diff --git a/build-choco/heta-compiler.nuspec b/build-choco/heta-compiler.nuspec index bcd09437..a8b5d26a 100644 --- a/build-choco/heta-compiler.nuspec +++ b/build-choco/heta-compiler.nuspec @@ -2,7 +2,7 @@ heta-compiler - 0.9.2 + 0.9.3 Heta Compiler - Command-Line Tool for Systems Biology https://hetalang.github.io/assets/img/logo.svg https://github.com/hetalang/heta-compiler diff --git a/build-deb/control b/build-deb/control index e2a7d3ab..b65060ad 100644 --- a/build-deb/control +++ b/build-deb/control @@ -1,5 +1,5 @@ Package: heta-compiler -Version: 0.9.2 +Version: 0.9.3 Section: utils Priority: optional Architecture: amd64 diff --git a/package-lock.json b/package-lock.json index 49bb12d0..23e3293b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "heta-compiler", - "version": "0.9.2", + "version": "0.9.3", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index a85975eb..099cfa6f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "heta-compiler", - "version": "0.9.2", + "version": "0.9.3", "description": "Programming platform for Quantitative Systems Pharmacology modeling in NodeJS", "main": "src/index.js", "scripts": {