Skip to content

Commit 2f7c0ac

Browse files
chore(main): release 1.0.0
1 parent eae30ce commit 2f7c0ac

File tree

4 files changed

+25
-3
lines changed

4 files changed

+25
-3
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "0.1.2"
2+
".": "1.0.0"
33
}

CHANGELOG.md

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,27 @@
11
# Changelog
22

3+
## [1.0.0](https://github.com/adcontextprotocol/adcp-client-python/compare/v0.1.2...v1.0.0) (2025-11-06)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* All client methods now require typed request objects. The legacy kwargs API has been removed for a cleaner, more type-safe interface.
9+
* All client methods now require typed request objects. The legacy kwargs API has been removed for a cleaner, more type-safe interface.
10+
11+
### Features
12+
13+
* complete Python AdCP SDK with typed API and auto-generated types ([#5](https://github.com/adcontextprotocol/adcp-client-python/issues/5)) ([bc8ebc9](https://github.com/adcontextprotocol/adcp-client-python/commit/bc8ebc957349550887b0d329fba02d5222a311ef))
14+
15+
16+
### Bug Fixes
17+
18+
* correct PyPI API token secret name ([#6](https://github.com/adcontextprotocol/adcp-client-python/issues/6)) ([eae30ce](https://github.com/adcontextprotocol/adcp-client-python/commit/eae30ceb9538a4ff2baf0a0a9a944b9e5ae0c5a0))
19+
20+
21+
### Documentation
22+
23+
* update PyPI setup guide with correct secret name and current status ([085b961](https://github.com/adcontextprotocol/adcp-client-python/commit/085b961ef6d49050a9dc4bcdd956ff29d2955aed))
24+
325
## [0.1.2](https://github.com/adcontextprotocol/adcp-client-python/compare/v0.1.1...v0.1.2) (2025-11-05)
426

527

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "adcp"
7-
version = "0.1.2"
7+
version = "1.0.0"
88
description = "Official Python client for the Ad Context Protocol (AdCP)"
99
authors = [
1010
{name = "AdCP Community", email = "maintainers@adcontextprotocol.org"}

src/adcp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
UpdateMediaBuyResponse,
4747
)
4848

49-
__version__ = "0.1.3"
49+
__version__ = "1.0.0"
5050

5151
__all__ = [
5252
# Client classes

0 commit comments

Comments
 (0)