Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`).
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion agentconnect/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"}
Expand Down