Skip to content

Commit 666eb1e

Browse files
committed
Update minor versions of all projects
1 parent d8464a0 commit 666eb1e

File tree

11 files changed

+13
-13
lines changed

11 files changed

+13
-13
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Universal Tool Calling Protocol (UTCP) 1.0.1
1+
# Universal Tool Calling Protocol (UTCP)
22

33
[![Follow Org](https://img.shields.io/github/followers/universal-tool-calling-protocol?label=Follow%20Org&logo=github)](https://github.com/universal-tool-calling-protocol)
44
[![PyPI Downloads](https://static.pepy.tech/badge/utcp)](https://pepy.tech/projects/utcp)
@@ -298,7 +298,7 @@ app = FastAPI()
298298
def utcp_discovery():
299299
return {
300300
"manual_version": "1.0.0",
301-
"utcp_version": "1.0.1",
301+
"utcp_version": "1.0.2",
302302
"tools": [
303303
{
304304
"name": "get_weather",

core/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Universal Tool Calling Protocol (UTCP) 1.0.1
1+
# Universal Tool Calling Protocol (UTCP)
22

33
[![Follow Org](https://img.shields.io/github/followers/universal-tool-calling-protocol?label=Follow%20Org&logo=github)](https://github.com/universal-tool-calling-protocol)
44
[![PyPI Downloads](https://static.pepy.tech/badge/utcp)](https://pepy.tech/projects/utcp)
@@ -298,7 +298,7 @@ app = FastAPI()
298298
def utcp_discovery():
299299
return {
300300
"manual_version": "1.0.0",
301-
"utcp_version": "1.0.1",
301+
"utcp_version": "1.0.2",
302302
"tools": [
303303
{
304304
"name": "get_weather",

core/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 = "utcp"
7-
version = "1.0.1"
7+
version = "1.0.2"
88
authors = [
99
{ name = "UTCP Contributors" },
1010
]

core/src/utcp/python_specific_tooling/version.py

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

66
logger = logging.getLogger(__name__)
77

8-
__version__ = "1.0.1"
8+
__version__ = "1.0.2"
99
try:
1010
__version__ = version("utcp")
1111
except PackageNotFoundError:

plugins/communication_protocols/cli/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 = "utcp-cli"
7-
version = "1.0.1"
7+
version = "1.0.2"
88
authors = [
99
{ name = "UTCP Contributors" },
1010
]

plugins/communication_protocols/gql/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 = "utcp-gql"
7-
version = "1.0.1"
7+
version = "1.0.2"
88
authors = [
99
{ name = "UTCP Contributors" },
1010
]

plugins/communication_protocols/http/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 = "utcp-http"
7-
version = "1.0.3"
7+
version = "1.0.4"
88
authors = [
99
{ name = "UTCP Contributors" },
1010
]

plugins/communication_protocols/mcp/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 = "utcp-mcp"
7-
version = "1.0.1"
7+
version = "1.0.2"
88
authors = [
99
{ name = "UTCP Contributors" },
1010
]

plugins/communication_protocols/socket/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 = "utcp-socket"
7-
version = "1.0.1"
7+
version = "1.0.2"
88
authors = [
99
{ name = "UTCP Contributors" },
1010
]

plugins/communication_protocols/text/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Next, define a UTCP manual that describes your tool. The `tool_call_template` mu
5252
```json
5353
{
5454
"manual_version": "1.0.0",
55-
"utcp_version": "1.0.1",
55+
"utcp_version": "1.0.2",
5656
"tools": [
5757
{
5858
"name": "get_mock_user",

0 commit comments

Comments
 (0)