Skip to content

Commit 74ccf8c

Browse files
authored
fix(integrations): bump typed Python package versions (#586)
* fix(integrations): bump typed Python package versions * fix(integrations): sync runtime package versions
1 parent 26580e4 commit 74ccf8c

27 files changed

Lines changed: 38 additions & 22 deletions

File tree

integrations/adk/python/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## Unreleased
44

5+
## 0.3.1 (2026-07-29)
6+
57
### Added
68

79
- Added the `py.typed` marker so installed `zep-adk` packages expose their inline type annotations to PEP 561-compatible type checkers.

integrations/adk/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "zep-adk"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
description = "Google ADK integration for Zep"
55
readme = "README.md"
66
requires-python = ">=3.11"

integrations/adk/python/src/zep_adk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
)
5757
"""
5858

59-
__version__ = "0.3.0"
59+
__version__ = "0.3.1"
6060
__author__ = "Zep AI"
6161
__description__ = "Google ADK integration for Zep"
6262

integrations/ag2/python/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [0.2.1] - 2026-07-29
11+
1012
### Added
1113

1214
- Added the `py.typed` marker so installed `zep-ag2` packages expose their inline type annotations to PEP 561-compatible type checkers.

integrations/ag2/python/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "zep-ag2"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "Zep memory integration for AG2 (AutoGen community fork)"
55
readme = "README.md"
66
requires-python = ">=3.11"

integrations/ag2/python/src/zep_ag2/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@
5757
"DEFAULT_CONTEXT_TEMPLATE",
5858
]
5959

60-
__version__ = "0.2.0"
60+
__version__ = "0.2.1"

integrations/ag2/python/tests/test_basic.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def test_version(self) -> None:
121121
import zep_ag2
122122

123123
assert hasattr(zep_ag2, "__version__")
124-
assert zep_ag2.__version__ == "0.2.0"
124+
assert zep_ag2.__version__ == "0.2.1"
125125

126126
def test_all_public_symbols(self) -> None:
127127
assert ZepMemoryManager is not None

integrations/autogen/python/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.2.1] - 2026-07-29
11+
1012
### Added
1113

1214
- Added the `py.typed` marker so installed `zep-autogen` packages expose their inline type annotations to PEP 561-compatible type checkers.

integrations/autogen/python/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "zep-autogen"
3-
version = "1.2.0"
3+
version = "1.2.1"
44
description = "Autogen integration for Zep"
55
readme = "README.md"
66
requires-python = ">=3.11"
@@ -91,4 +91,4 @@ module = [
9191
"autogen_ext.*",
9292
"zep_cloud.*",
9393
]
94-
ignore_missing_imports = true
94+
ignore_missing_imports = true

integrations/crewai/python/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.2.1] - 2026-07-29
11+
1012
### Added
1113

1214
- Added the `py.typed` marker so installed `zep-crewai` packages expose their inline type annotations to PEP 561-compatible type checkers.

0 commit comments

Comments
 (0)