Skip to content
Open
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
12 changes: 12 additions & 0 deletions python/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@

<!-- towncrier release notes start -->

## [1.40.0] - 2026-02-26

### Features

- Added createEvmEip7702Delegation to upgrade EOAs with smart account capabilities ([#606](https://github.com/coinbase/cdp-sdk/pull/606))

### Bugfixes

- Fixed a bug where concurrent async method calls on the same object were short-circuited by the analytics error tracking wrapper, causing only the first call to execute and subsequent calls to return the input parameters instead of the actual result. ([#fix-concurrent-analytics-wrapper](https://github.com/coinbase/cdp-sdk/pull/fix-concurrent-analytics-wrapper))
- Simplified analytics ([#607](https://github.com/coinbase/cdp-sdk/pull/607))


## [1.39.1] - 2026-01-29

### Bugfixes
Expand Down
2 changes: 1 addition & 1 deletion python/cdp/__version__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.39.1"
__version__ = "1.40.0"
1 change: 0 additions & 1 deletion python/changelog.d/606.feature.md

This file was deleted.

1 change: 0 additions & 1 deletion python/changelog.d/607.bugfix.md

This file was deleted.

1 change: 0 additions & 1 deletion python/changelog.d/fix-concurrent-analytics-wrapper.bugfix

This file was deleted.

2 changes: 1 addition & 1 deletion python/docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
project = "CDP SDK"
copyright = "2025, Coinbase Developer Documentation"
author = "Coinbase Developer Documentation"
release = "1.39.1"
release = "1.40.0"

# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
Expand Down
2 changes: 1 addition & 1 deletion python/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "cdp-sdk"
version = "1.39.1"
version = "1.40.0"
description = "CDP SDK"
license = {text = "MIT"}
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions python/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 0 additions & 5 deletions typescript/.changeset/big-clouds-judge.md

This file was deleted.

5 changes: 0 additions & 5 deletions typescript/.changeset/eighty-pigs-think.md

This file was deleted.

10 changes: 10 additions & 0 deletions typescript/src/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# CDP SDK Changelog

## 1.45.0

### Minor Changes

- [#606](https://github.com/coinbase/cdp-sdk/pull/606) [`3fef84a`](https://github.com/coinbase/cdp-sdk/commit/3fef84a828ee897fcbdc9bb920fcc3641eac8641) Thanks [@milan-cb](https://github.com/milan-cb)! - Added createEvmEip7702Delegation to upgrade EOAs with smart account capabilities

### Patch Changes

- [#607](https://github.com/coinbase/cdp-sdk/pull/607) [`21244e3`](https://github.com/coinbase/cdp-sdk/commit/21244e32384fb189facbea96668087d24ded035a) Thanks [@0xRAG](https://github.com/0xRAG)! - Simplify analytics

## 1.44.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion typescript/src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coinbase/cdp-sdk",
"version": "1.44.1",
"version": "1.45.0",
"description": "SDK for interacting with the Coinbase Developer Platform Wallet API",
"type": "module",
"main": "./_cjs/index.js",
Expand Down
2 changes: 1 addition & 1 deletion typescript/src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const version = "1.44.1";
export const version = "1.45.0";
Loading