Skip to content

Commit b5d20cd

Browse files
chore: Release v0.6.10 (#1123)
1 parent 7c3d5e3 commit b5d20cd

File tree

22 files changed

+45
-22
lines changed

22 files changed

+45
-22
lines changed

python/composio/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.6.9"
1+
__version__ = "0.6.10"

python/composio/client/enums/action.pyi

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3815,6 +3815,10 @@ class Action(Enum[ActionData], metaclass=EnumGenerator):
38153815
GOOGLETASKS_LIST_TASK_LISTS: "Action"
38163816
GOOGLETASKS_PATCH_TASK: "Action"
38173817
GOOGLETASKS_PATCH_TASK_LIST: "Action"
3818+
GOOGLE_MAPS_GET_DIRECTION: "Action"
3819+
GOOGLE_MAPS_GET_ROUTE: "Action"
3820+
GOOGLE_MAPS_NEARBY_SEARCH: "Action"
3821+
GOOGLE_MAPS_TEXT_SEARCH: "Action"
38183822
GREPTILE_CODE_QUERY: "Action"
38193823
HACKERNEWS_GET_FRONTPAGE: "Action"
38203824
HACKERNEWS_GET_ITEM_WITH_ID: "Action"
@@ -5272,8 +5276,11 @@ class Action(Enum[ActionData], metaclass=EnumGenerator):
52725276
OUTLOOK_OUTLOOK_GET_MESSAGE: "Action"
52735277
OUTLOOK_OUTLOOK_GET_PROFILE: "Action"
52745278
OUTLOOK_OUTLOOK_GET_SCHEDULE: "Action"
5279+
OUTLOOK_OUTLOOK_LIST_CONTACTS: "Action"
5280+
OUTLOOK_OUTLOOK_LIST_EVENTS: "Action"
52755281
OUTLOOK_OUTLOOK_LIST_MESSAGES: "Action"
52765282
OUTLOOK_OUTLOOK_REPLY_EMAIL: "Action"
5283+
OUTLOOK_OUTLOOK_SEARCH_MESSAGES: "Action"
52775284
OUTLOOK_OUTLOOK_SEND_EMAIL: "Action"
52785285
OUTLOOK_OUTLOOK_UPDATE_CALENDAR_EVENT: "Action"
52795286
OUTLOOK_OUTLOOK_UPDATE_CONTACT: "Action"
@@ -7813,6 +7820,7 @@ class Action(Enum[ActionData], metaclass=EnumGenerator):
78137820
ZENDESK_GET_ABOUT_ME: "Action"
78147821
ZENDESK_GET_ALL_ZENDESK_ORGANIZATIONS: "Action"
78157822
ZENDESK_GET_ZENDESK_ORGANIZATION: "Action"
7823+
ZENDESK_REPLY_ZENDESK_TICKET: "Action"
78167824
ZENDESK_UPDATE_ZENDESK_ORGANIZATION: "Action"
78177825
ZENROWS_SCRAPE_URL: "Action"
78187826
ZEPTOOL_ADD_MEMORY: "Action"
@@ -7825,6 +7833,20 @@ class Action(Enum[ActionData], metaclass=EnumGenerator):
78257833
ZOHO_GET_ZOHO_RECORDS: "Action"
78267834
ZOHO_UPDATE_RELATED_RECORDS: "Action"
78277835
ZOHO_UPDATE_ZOHO_RECORD: "Action"
7836+
ZOOMINFO_ENRICH_COMPANY: "Action"
7837+
ZOOMINFO_ENRICH_CONTACT: "Action"
7838+
ZOOMINFO_ENRICH_LOCATION: "Action"
7839+
ZOOMINFO_ENRICH_TECHNOLOGY: "Action"
7840+
ZOOMINFO_SEARCH_COMPANY: "Action"
7841+
ZOOMINFO_SEARCH_COMPANY_INPUT: "Action"
7842+
ZOOMINFO_SEARCH_CONTACT: "Action"
7843+
ZOOMINFO_SEARCH_CONTACT_INPUT: "Action"
7844+
ZOOMINFO_SEARCH_INTENT: "Action"
7845+
ZOOMINFO_SEARCH_INTENT_INPUT: "Action"
7846+
ZOOMINFO_SEARCH_NEWS: "Action"
7847+
ZOOMINFO_SEARCH_NEWS_INPUT: "Action"
7848+
ZOOMINFO_SEARCH_SCOOP: "Action"
7849+
ZOOMINFO_SEARCH_SCOOP_INPUT: "Action"
78287850
ZOOM_ADD_A_MEETING_REGISTRANT: "Action"
78297851
ZOOM_ADD_A_NEW_DEVICE: "Action"
78307852
ZOOM_ADD_A_USER_S_TSP_ACCOUNT: "Action"

python/composio/client/enums/app.pyi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ class App(Enum[AppData], metaclass=EnumGenerator):
133133
GOOGLESHEETS: "App"
134134
GOOGLETASKS: "App"
135135
GOOGLE_ANALYTICS: "App"
136+
GOOGLE_MAPS: "App"
136137
GORGIAS: "App"
137138
GO_TO_WEBINAR: "App"
138139
GREPTILE: "App"
@@ -289,3 +290,4 @@ class App(Enum[AppData], metaclass=EnumGenerator):
289290
ZOHO_INVOICE: "App"
290291
ZOHO_MAIL: "App"
291292
ZOOM: "App"
293+
ZOOMINFO: "App"

python/composio/client/enums/tag.pyi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -698,6 +698,7 @@ class Tag(Enum[TagData], metaclass=EnumGenerator):
698698
NOTION_IMPORTANT: "Tag"
699699
OUTLOOK_EMAIL: "Tag"
700700
OUTLOOK_IMPORTANT: "Tag"
701+
OUTLOOK_SEARCH: "Tag"
701702
PAGERDUTY_ABILITIES: "Tag"
702703
PAGERDUTY_ADD_ONS: "Tag"
703704
PAGERDUTY_ALERT_GROUPING_SETTINGS: "Tag"

python/composio/server/api.py

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
from fastapi.responses import FileResponse
2222
from pydantic import BaseModel, Field
2323

24-
from composio import Action, App
24+
from composio import Action, App, __version__
2525
from composio.cli.context import get_context
2626
from composio.client.collections import ActionModel, AppModel
2727
from composio.client.enums.base import get_runtime_actions
@@ -155,9 +155,7 @@ async def add_process_time_header(request: Request, call_next):
155155
@with_exception_handling
156156
def _api() -> GetApiResponse:
157157
"""Composio tooling server API root."""
158-
return GetApiResponse(
159-
version="0.3.20",
160-
)
158+
return GetApiResponse(version=__version__)
161159

162160
@app.get("/api/apps", response_model=APIResponse[t.List[AppModel]])
163161
@with_exception_handling

python/dockerfiles/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ RUN /bin/python3 -m venv .composio/venv
1919
RUN export PATH=$PATH:$(pwd)/.composio/venv/bin
2020

2121
# Install composio
22-
RUN python -m pip install composio-core[all]==0.6.9 fastapi playwright uvicorn
22+
RUN python -m pip install composio-core[all]==0.6.10 fastapi playwright uvicorn
2323

2424
# Install playwright deps
2525
RUN playwright install-deps

python/plugins/autogen/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="composio_autogen",
12-
version="0.6.9",
12+
version="0.6.10",
1313
author="Sawradip",
1414
author_email="[email protected]",
1515
description="Use Composio to get an array of tools with your Autogen agent.",

python/plugins/camel/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="composio_camel",
12-
version="0.6.9",
12+
version="0.6.10",
1313
author="Sawradip",
1414
author_email="[email protected]",
1515
description="Use Composio to get an array of tools with your Claude LLMs.",

python/plugins/claude/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="composio_claude",
12-
version="0.6.9",
12+
version="0.6.10",
1313
author="Sawradip",
1414
author_email="[email protected]",
1515
description="Use Composio to get an array of tools with your Claude LLMs.",

python/plugins/crew_ai/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name="composio_crewai",
12-
version="0.6.9",
12+
version="0.6.10",
1313
author="Himanshu",
1414
author_email="[email protected]",
1515
description="Use Composio to get an array of tools with your CrewAI agent.",

0 commit comments

Comments
 (0)