Skip to content

Commit ac7bf6d

Browse files
authored
uprev to v0.0.10 (#154)
1 parent d595c08 commit ac7bf6d

File tree

5 files changed

+20
-13
lines changed

5 files changed

+20
-13
lines changed

pydantic_ai_examples/pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "pydantic-ai-examples"
7-
version = "0.0.9"
7+
version = "0.0.10"
88
description = "Examples of how to use PydanticAI and what it can do."
99
authors = [
1010
{ name = "Samuel Colvin", email = "[email protected]" },
@@ -34,7 +34,7 @@ classifiers = [
3434
]
3535
requires-python = ">=3.9"
3636
dependencies = [
37-
"pydantic-ai-slim[openai,vertexai,groq]==0.0.9",
37+
"pydantic-ai-slim[openai,vertexai,groq]==0.0.10",
3838
"asyncpg>=0.30.0",
3939
"fastapi>=0.115.4",
4040
"logfire[asyncpg,fastapi]>=2.3",

pydantic_ai_slim/pyproject.toml

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

55
[project]
66
name = "pydantic-ai-slim"
7-
version = "0.0.9"
7+
version = "0.0.10"
88
description = "Agent Framework / shim to use Pydantic with LLMs, slim package"
99
authors = [
1010
{ name = "Samuel Colvin", email = "[email protected]" },

pyproject.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "pydantic-ai"
7-
version = "0.0.9"
7+
version = "0.0.10"
88
description = "Agent Framework / shim to use Pydantic with LLMs"
99
authors = [
1010
{ name = "Samuel Colvin", email = "[email protected]" },
@@ -36,7 +36,7 @@ classifiers = [
3636
"Framework :: Pytest",
3737
]
3838
requires-python = ">=3.9"
39-
dependencies = ["pydantic-ai-slim[openai,vertexai,groq]==0.0.9"]
39+
dependencies = ["pydantic-ai-slim[openai,vertexai,groq]==0.0.10"]
4040

4141
[project.urls]
4242
Homepage = "https://ai.pydantic.dev"
@@ -45,7 +45,8 @@ Documentation = "https://ai.pydantic.dev"
4545
Changelog = "https://github.com/pydantic/pydantic-ai/releases"
4646

4747
[project.optional-dependencies]
48-
examples = ["pydantic-ai-examples==0.0.9"]
48+
examples = ["pydantic-ai-examples==0.0.10"]
49+
logfire = ["logfire>=2.3"]
4950

5051
[tool.uv.sources]
5152
pydantic-ai-slim = { workspace = true }

uprev.py

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
"""
1313

1414
import re
15+
import subprocess
1516
import sys
1617

1718
from pathlib import Path
@@ -70,12 +71,13 @@ def replace_deps_version(text: str) -> tuple[str, int]:
7071
root_pp.write_text(root_pp_text)
7172
examples_pp.write_text(examples_pp_text)
7273
slim_pp.write_text(slim_pp_text)
74+
print('running `make sync`...')
75+
subprocess.run(['make', 'sync'], check=True)
7376
print(
7477
f'SUCCESS: replaced version in\n'
75-
f'* {root_pp}\n'
76-
f'* {examples_pp}\n'
77-
f'* {slim_pp}\n\n'
78-
'Now run `make sync` to update the lock files.',
78+
f' {root_pp}\n'
79+
f' {examples_pp}\n'
80+
f' {slim_pp}'
7981
)
8082
else:
8183
print(

uv.lock

Lines changed: 7 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)