From f59894c65a96d1d28c1ae3f40aa0ddfc33f2d5ca Mon Sep 17 00:00:00 2001 From: retoor Date: Thu, 6 Nov 2025 15:16:06 +0100 Subject: [PATCH] feat: implement distributed dataset system for agents --- CHANGELOG.md | 8 ++++++++ pyproject.toml | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index faf5e8a..2866228 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ # Changelog + +## Version 1.4.0 - 2025-11-06 + +Agents can now share data more efficiently using a new distributed dataset system. This improves performance and allows agents to work together on larger tasks. + +**Changes:** 48 files, 7423 lines +**Languages:** Markdown (8 lines), Other (562 lines), Python (6848 lines), TOML (5 lines) + ## Version 1.3.0 - 2025-11-05 This release updates how the software finds configuration files and handles communication with agents. These changes improve reliability and allow for more flexible configuration options. diff --git a/pyproject.toml b/pyproject.toml index eaa3493..21cd928 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta" [project] name = "rp" -version = "1.3.0" +version = "1.4.0" description = "R python edition. The ultimate autonomous AI CLI." readme = "README.md" requires-python = ">=3.12"