diff --git a/BULLETIN.md b/BULLETIN.md index a857a7ce10..11cc627776 100644 --- a/BULLETIN.md +++ b/BULLETIN.md @@ -4,23 +4,24 @@ 📖 *User Guide*: https://docs.agpt.co. 👩 *Contributors Wiki*: https://github.com/Significant-Gravitas/Auto-GPT/wiki/Contributing. -# v0.4.5 RELEASE HIGHLIGHTS! 🚀 +# v0.4.6 RELEASE HIGHLIGHTS! 🚀 # ----------------------------- -This release includes under-the-hood improvements and bug fixes, such as more -accurate token counts for OpenAI functions, faster CI builds, improved plugin -handling, and refactoring of the Config class for better maintainability. +This release includes under-the-hood improvements and bug fixes, including better UTF-8 +special character support, workspace write access for sandboxed Python execution, +more robust path resolution for config files and the workspace, and a full restructure +of the Agent class, the "brain" of Auto-GPT, to make it more extensible. We have also released some documentation updates, including: - *How to share your system logs* - Visit [docs/share-your-logs.md] to learn how to how to share logs with us + Visit [docs/share-your-logs.md] to learn how to how to share logs with us via a log analyzer graciously contributed by https://www.e2b.dev/ - *Auto-GPT re-architecture documentation* - You can learn more about the inner-workings of the Auto-GPT re-architecture + You can learn more about the inner-workings of the Auto-GPT re-architecture released last cycle, via these links: * [autogpt/core/README.md] * [autogpt/core/ARCHITECTURE_NOTES.md] -Take a look at the Release Notes on Github for the full changelog! +Take a look at the Release Notes on Github for the full changelog! https://github.com/Significant-Gravitas/Auto-GPT/releases. diff --git a/docs/configuration/memory.md b/docs/configuration/memory.md index cfffe9c914..9d18f5ba2a 100644 --- a/docs/configuration/memory.md +++ b/docs/configuration/memory.md @@ -186,7 +186,7 @@ View memory usage by using the `--debug` flag :) ## 🧠 Memory pre-seeding !!! warning - Data ingestion is broken in v0.4.5 and possibly earlier versions. This is a known issue that will be addressed in future releases. Follow these issues for updates. + Data ingestion is broken in v0.4.6 and possibly earlier versions. This is a known issue that will be addressed in future releases. Follow these issues for updates. [Issue 4435](https://github.com/Significant-Gravitas/Auto-GPT/issues/4435) [Issue 4024](https://github.com/Significant-Gravitas/Auto-GPT/issues/4024) [Issue 2076](https://github.com/Significant-Gravitas/Auto-GPT/issues/2076) diff --git a/pyproject.toml b/pyproject.toml index f16ee501f7..da0fcdd688 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "agpt" -version = "0.4.5" +version = "0.4.6" authors = [ { name="Torantulino", email="support@agpt.co" }, ]