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
4 changes: 2 additions & 2 deletions .bumpversion.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# https://peps.python.org/pep-0440/

[tool.bumpversion]
current_version = "0.2.4"
current_version = "1.0.0a0"
# Parse version following PEP 440
parse = """(?x)
(?P<major>0|[1-9]\\d*)\\.
Expand All @@ -25,7 +25,7 @@
[tool.bumpversion.parts.release_type]
# Release progression: .dev -> a -> b -> rc -> final -> .post
optional_value = "final" # When "final", the release_type is omitted
values = [ ".dev", ".post", "a", "b", "final", "rc" ]
values = [ ".dev", "a", "b", "rc", "final", ".post" ]

# Files to update when bumping version
[[tool.bumpversion.files]]
Expand Down
2 changes: 1 addition & 1 deletion agentic-mesh-protocol
Submodule agentic-mesh-protocol updated 23 files
+1 −0 Taskfile.yml
+2 −2 proto/agentic_mesh_protocol/cost/v1/cost_service.proto
+2 −7 proto/agentic_mesh_protocol/filesystem/v1/filesystem_service.proto
+187 −0 proto/agentic_mesh_protocol/gateway/v1/gateway.proto
+54 −0 proto/agentic_mesh_protocol/gateway/v1/gateway_service.proto
+4 −14 proto/agentic_mesh_protocol/module/v1/information.proto
+0 −5 proto/agentic_mesh_protocol/module/v1/module_service.proto
+2 −57 proto/agentic_mesh_protocol/module/v1/monitoring.proto
+0 −94 proto/agentic_mesh_protocol/module_registry/v1/discover.proto
+0 −44 proto/agentic_mesh_protocol/module_registry/v1/metadata.proto
+0 −48 proto/agentic_mesh_protocol/module_registry/v1/module_registry_service.proto
+0 −75 proto/agentic_mesh_protocol/module_registry/v1/registration.proto
+0 −91 proto/agentic_mesh_protocol/module_registry/v1/status.proto
+2 −6 proto/agentic_mesh_protocol/registry/v1/registry_requests.proto
+1 −1 proto/agentic_mesh_protocol/registry/v1/registry_service.proto
+8 −8 proto/agentic_mesh_protocol/setup/v1/setup_service.proto
+3 −3 proto/agentic_mesh_protocol/storage/v1/data.proto
+2 −2 proto/agentic_mesh_protocol/storage/v1/storage_service.proto
+0 −105 proto/agentic_mesh_protocol/task_manager/v1/task_manager_dto.proto
+0 −115 proto/agentic_mesh_protocol/task_manager/v1/task_manager_message.proto
+0 −35 proto/agentic_mesh_protocol/task_manager/v1/task_manager_service.proto
+1 −1 proto/agentic_mesh_protocol/user_profile/v1/user_profile.proto
+2 −2 proto/buf.lock
31 changes: 13 additions & 18 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,18 @@
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
dependencies = [
"bump-my-version==1.2.7",
"googleapis-common-protos==1.72.0",
"grpcio-tools==1.78.0",
"grpcio==1.78.0",
"protobuf==6.33.5",
"protovalidate==1.1.2",
"bump-my-version>=1.3.0",
"googleapis-common-protos==1.75.0",
"grpcio-tools==1.81.0",
"grpcio==1.81.0",
"protobuf==6.33.6",
"protovalidate==1.2.0",
]
description = "Python gRPC interfaces for Agentic Mesh Protocol"
keywords = [
Expand All @@ -37,7 +38,7 @@
name = "agentic-mesh-protocol"
readme = "README.md"
requires-python = ">=3.10"
version = "0.2.4"
version = "1.0.0a0"

[project.urls]
"Bug Tracker" = "https://github.com/DigitalKin-ai/service-apis-py/issues"
Expand All @@ -50,21 +51,15 @@

[dependency-groups]
dev = [
"build>=1.4.0",
"build>=1.5.0",
"bump-my-version>=1.2.4",
"mypy>=1.19.1",
"pre-commit>=4.5.1",
"pytest>=9.0.1",
"ruff>=0.15.2",
"mypy>=2.1.0",
"pre-commit>=4.6.0",
"pytest>=9.0.3",
"ruff>=0.15.16",
"twine>=6.2.0",
]

test = [ "pytest>=8.4.2" ]

lint = [ "pre-commit>=4.3.0", "ruff>=0.14.3" ]

build = [ "build>=1.3.0", "bump-my-version>=1.2.4", "twine>=6.2.0" ]

[tool.setuptools]
package-dir = { "" = "src" }

Expand Down
2 changes: 1 addition & 1 deletion src/agentic_mesh_protocol/__version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
try:
__version__ = version("agentic-mesh-protocol")
except PackageNotFoundError:
__version__ = "0.2.4"
__version__ = "1.0.0a0"
Empty file.
Empty file.
1 change: 1 addition & 0 deletions taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -363,3 +363,4 @@ tasks:
- task: clean
- task: proto:clean
- rm -rf .venv
- rm -rf .task
6 changes: 3 additions & 3 deletions test/test_imports.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ def test_all_proto_imports():
)

# Module registry service imports
from agentic_mesh_protocol.module_registry.v1 import (
module_registry_service_pb2,
from agentic_mesh_protocol.registry.v1 import (
registry_service_pb2,
)

# Setup service imports
Expand All @@ -38,7 +38,7 @@ def test_all_proto_imports():

# Verify that the modules have expected attributes (basic sanity check)
assert hasattr(module_service_pb2, "DESCRIPTOR")
assert hasattr(module_registry_service_pb2, "DESCRIPTOR")
assert hasattr(registry_service_pb2, "DESCRIPTOR")
assert hasattr(storage_service_pb2, "DESCRIPTOR")
assert hasattr(filesystem_service_pb2, "DESCRIPTOR")
assert hasattr(cost_service_pb2, "DESCRIPTOR")
Expand Down
1,479 changes: 778 additions & 701 deletions uv.lock

Large diffs are not rendered by default.

Loading