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
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Run Tests
run: make tests

- name: Build Root, Adapter, And Helper Projects
- name: Build Root, Adapter, Helper, And Transport Projects
shell: bash
run: |
project_dirs() {
Expand All @@ -54,6 +54,9 @@ jobs:
if [ -d packages/adapters ]; then
find packages/adapters -type f -name pyproject.toml -exec dirname {} \; | sort -u
fi
if [ -d packages/transports ]; then
find packages/transports -type f -name pyproject.toml -exec dirname {} \; | sort -u
fi
printf '.\n'
}

Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
uv sync --all-extras
make prod

- name: Build And Publish Root, Adapter, And Helper Projects
- name: Build And Publish Root, Adapter, Helper, And Transport Projects
shell: bash
run: |
project_dirs() {
Expand All @@ -48,6 +48,9 @@ jobs:
if [ -d packages/adapters ]; then
find packages/adapters -type f -name pyproject.toml -exec dirname {} \; | sort -u
fi
if [ -d packages/transports ]; then
find packages/transports -type f -name pyproject.toml -exec dirname {} \; | sort -u
fi
printf '.\n'
}

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.0
1.0.0
2 changes: 1 addition & 1 deletion packages/adapters/langchain-acp/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.0
1.0.0
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__all__ = ("__version__",)

__version__ = "0.9.0"
__version__ = "1.0.0"
2 changes: 1 addition & 1 deletion packages/adapters/pydantic-acp/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.0
1.0.0
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__all__ = ("__version__",)

__version__ = "0.9.0"
__version__ = "1.0.0"
2 changes: 1 addition & 1 deletion packages/helpers/codex-auth-helper/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.0
1.0.0
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__all__ = ("__version__",)

__version__ = "0.9.0"
__version__ = "1.0.0"
2 changes: 1 addition & 1 deletion packages/transports/acpremote/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.9.0
1.0.0
2 changes: 1 addition & 1 deletion packages/transports/acpremote/src/acpremote/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__all__ = ("__version__",)

__version__ = "0.9.0"
__version__ = "1.0.0"
2 changes: 1 addition & 1 deletion src/acpkit/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

__all__ = ("__version__",)

__version__ = "0.9.0"
__version__ = "1.0.0"