From 4b15f988fc6a2b8e36bcb0a18d2cecbd1fe41977 Mon Sep 17 00:00:00 2001
From: Evgeny Metelkin <evgeny.metelkin@gmail.com>
Date: Wed, 15 Jan 2025 12:43:07 +0200
Subject: [PATCH] update version

---
 CHANGELOG.md                     | 13 +++++++++++++
 build-choco/README.md            |  4 ++--
 build-choco/heta-compiler.nuspec |  2 +-
 build-deb/control                |  2 +-
 package-lock.json                |  2 +-
 package.json                     |  2 +-
 6 files changed, 19 insertions(+), 6 deletions(-)

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 <your-api-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=<your-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=<your-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 @@
 <package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
   <metadata>
     <id>heta-compiler</id>
-    <version>0.9.2</version>
+    <version>0.9.3</version>
     <title>Heta Compiler - Command-Line Tool for Systems Biology</title>
     <iconUrl>https://hetalang.github.io/assets/img/logo.svg</iconUrl>
     <packageSourceUrl>https://github.com/hetalang/heta-compiler</packageSourceUrl>
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": {