diff --git a/CHANGELOG.md b/CHANGELOG.md index 49ba443..72e3ed8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Added + +### Changed + +### Deprecated + +### Fixed + +### Security + +## [0.3.0] - 2025-05-02 + ### Added - Agent payment capabilities using Coinbase Developer Platform (CDP) SDK and AgentKit. - Wallet persistence for agents (`agentconnect.utils.wallet_manager`). @@ -118,6 +130,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Set up environment variable handling - Added input validation for all API endpoints -[Unreleased]: https://github.com/AKKI0511/AgentConnect/compare/v0.2.0...HEAD +[Unreleased]: https://github.com/AKKI0511/AgentConnect/compare/v0.3.0...HEAD +[0.3.0]: https://github.com/AKKI0511/AgentConnect/compare/v0.2.0...v0.3.0 [0.2.0]: https://github.com/AKKI0511/AgentConnect/compare/v0.1.0...v0.2.0 [0.1.0]: https://github.com/AKKI0511/AgentConnect/releases/tag/v0.1.0 diff --git a/agentconnect/__init__.py b/agentconnect/__init__.py index d93c444..2e9545d 100644 --- a/agentconnect/__init__.py +++ b/agentconnect/__init__.py @@ -24,7 +24,7 @@ For detailed usage examples, see the README.md or visit the documentation. """ -__version__ = "0.1.0" +__version__ = "0.3.0" # Import subpackages to make them available to users from agentconnect import agents diff --git a/docs/source/conf.py b/docs/source/conf.py index 339c5e4..5e8cd19 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -28,8 +28,8 @@ def skip_private_members(app, what, name, obj, skip, options): copyright = '2025, Akshat Joshi' author = 'Akshat Joshi' -version = '0.2.0' -release = '0.2.0' +version = '0.3.0' +release = '0.3.0' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/pyproject.toml b/pyproject.toml index bae1bcf..0e021e5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "agentconnect" -version = "0.2.0" +version = "0.3.0" description = "AgentConnect - A framework for connecting and managing AI agents" authors = [ {name = "Akshat Joshi",email = "akkijoshi0511@gmail.com"}