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
13 changes: 13 additions & 0 deletions python/coinbase-agentkit/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,19 @@

<!-- towncrier release notes start -->

## [0.2.0] - 2025-03-14

### Fixed

- Fixed bug in Morpho action provider to allow depositing ERC20 tokens of variable decimal precision ([#573](https://github.com/coinbase/agentkit/pull/573))

### Added

- Added Allora Network action provider ([#110](https://github.com/coinbase/agentkit/pull/110))
- Added Hyperbolic action providers for AI, Billing, Marketplace, and Settings
- Added SSH action provider for connecting, running remote commands, downloading and uploading


## [0.1.6] - 2025-03-11

### Added
Expand Down

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion python/coinbase-agentkit/changelog.d/110.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion python/coinbase-agentkit/changelog.d/573.bugfix.md

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.1.5"
__version__ = "0.2.0"
2 changes: 1 addition & 1 deletion python/coinbase-agentkit/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

project = 'Coinbase Agentkit'
author = 'Coinbase Developer Platform'
release = '0.1.5'
release = '0.2.0'

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion python/coinbase-agentkit/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "coinbase-agentkit"
version = "0.1.6"
version = "0.2.0"
description = "Coinbase AgentKit"
authors = ["John Peterson <john.peterson@coinbase.com>"]
readme = "README.md"
Expand Down
8 changes: 8 additions & 0 deletions python/create-onchain-agent/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## [0.3.0] - 2025-03-14

### Added

- Added OpenAI Agents SDK support ([#557](https://github.com/coinbase/agentkit/pull/557))
- Added --beginner flag


## [0.2.0] - 2025-03-07

### Fixed
Expand Down

This file was deleted.

1 change: 0 additions & 1 deletion python/create-onchain-agent/changelog.d/557.feature.md

This file was deleted.

2 changes: 1 addition & 1 deletion python/create-onchain-agent/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "create-onchain-agent"
version = "0.2.0"
version = "0.3.0"
description = "CLI to create an onchain agent project"
authors = ["Carson Roscoe <carsonroscoe7@gmail.com>"]
readme = "README.md"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package-mode = false
[tool.poetry.dependencies]
python = "^3.10"
python-dotenv = "^1.0.1"
coinbase-agentkit = "^0.1.5"
coinbase-agentkit = "^0.2.0"
{% if _framework == "langchain" %}langchain-openai = "^0.2.4"
langgraph = "^0.2.39"
coinbase-agentkit-langchain = "0.1.0"{% elif _framework == "openai_agents" %}openai-agents = "0.0.2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ package-mode = false
[tool.poetry.dependencies]
python = "^3.10"
python-dotenv = "^1.0.1"
coinbase-agentkit = "^0.1.5"
coinbase-agentkit = "^0.2.0"
{% if _framework == "langchain" %}langchain-openai = "^0.2.4"
langgraph = "^0.2.39"
coinbase-agentkit-langchain = "0.1.0"{% elif _framework == "openai_agents" %}openai-agents = "0.0.2"
Expand Down