diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 512373e..b41ee19 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "0.3.2" + ".": "0.4.0" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 29ffc7f..0903025 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # Changelog +## [0.4.0](https://github.com/hcengineering/huly-coder/compare/huly-coder-v0.3.2...huly-coder-v0.4.0) (2025-07-16) + + +### Features + +* additional configuration for model providers ([699161b](https://github.com/hcengineering/huly-coder/commit/699161be4ac9f7ba8b602a4a035752fd8ec771a8)) +* **agent:** Add user appearance (User Name) ([4f28514](https://github.com/hcengineering/huly-coder/commit/4f28514d27ffb8dfb414b28ed108973c7b222b8b)) +* export history to markdown ([bcc1b90](https://github.com/hcengineering/huly-coder/commit/bcc1b90aef3043affe805a0ad93bd7daf2aa07ea)) +* **memory:** Add VoyageAI embedding support for memory ([193b299](https://github.com/hcengineering/huly-coder/commit/193b29969ae9b66e3b9d5596b919a979aaf75883)) +* store env context in data/env.txt file ([54fd6e7](https://github.com/hcengineering/huly-coder/commit/54fd6e7f5660cf8a698d56a2abe8835127d7fae6)) +* **tui:** Improve theme support, add light theme ([4f28514](https://github.com/hcengineering/huly-coder/commit/4f28514d27ffb8dfb414b28ed108973c7b222b8b)) + + +### Bug Fixes + +* on tool deny allow user correct promt ([715cc8d](https://github.com/hcengineering/huly-coder/commit/715cc8d0adf95af1b5c581085af08cc9405a8c2c)) +* **tui:** incorrect scroll to the latest message in history view ([cfcddd6](https://github.com/hcengineering/huly-coder/commit/cfcddd6c57e9f79022f2bf381cbdcfdc1df2bb03)) +* **tui:** incorrect scroll to the latest message in history view ([7d5452e](https://github.com/hcengineering/huly-coder/commit/7d5452e3788927988a7f38a4dda1f409ca9cdc4e)) +* update rig-fastembed module to the latest version ([1b5a91a](https://github.com/hcengineering/huly-coder/commit/1b5a91a8ee6ecd3046c89dae8f130c587b1b9d74)) + ## [0.3.2](https://github.com/hcengineering/huly-coder/compare/huly-coder-v0.3.1...huly-coder-v0.3.2) (2025-07-14) diff --git a/Cargo.lock b/Cargo.lock index 1ff626d..bc63ff6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1856,7 +1856,7 @@ checksum = "df3b46402a9d5adb4c86a0cf463f42e19994e3ee891101b1841f30a545cb49a9" [[package]] name = "huly-coder" -version = "0.3.2" +version = "0.4.0" dependencies = [ "ansi_colours", "anyhow", @@ -5513,7 +5513,7 @@ dependencies = [ [[package]] name = "xtask" -version = "0.3.2" +version = "0.4.0" [[package]] name = "yaml-rust2" diff --git a/Cargo.toml b/Cargo.toml index 20cde56..7c688e6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ repository = "https://github.com/hcengineering/huly-coder" [package] name = "huly-coder" -version = "0.3.2" +version = "0.4.0" edition = "2021" license = "MIT" homepage = "https://github.com/hcengineering/huly-coder" diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index d515177..d6fbe16 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "xtask" -version = "0.3.2" +version = "0.4.0" edition.workspace = true license.workspace = true homepage.workspace = true