Skip to content

Commit a239ccc

Browse files
committed
🔧 chore(version): update version to pre-release
- change version from "0.4.6.post2" to "0.4.7.alpha" in documentation, configuration, and code files - align project versioning to indicate alpha release stage
1 parent 3563941 commit a239ccc

File tree

3 files changed

+6
-10
lines changed

3 files changed

+6
-10
lines changed

docs/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
copyright = "2024-2025, Peng Ding"
1111
author = "Peng Ding"
1212
html_title = "ToolRegistry"
13-
release = "0.4.6.post2"
13+
release = "0.4.7.alpha"
1414

1515
import os
1616
import sys

pyproject.toml

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

55
[project]
66
name = "toolregistry"
7-
version = "0.4.6.post2"
7+
version = "0.4.7.alpha"
88
authors = [{ name = "Oaklight", email = "oaklight@gmx.com" }]
99
description = "A library for managing tool registries"
1010
readme = "README.md"
@@ -22,22 +22,18 @@ dependencies = [
2222
"deprecated>=1.2.18",
2323
"dill>=0.4.0",
2424
"httpx>=0.28.1",
25-
"fake-useragent>=2.0.0",
25+
"fake-useragent>=2.0.0", # 2.0.0 is the max version compatible with Python 3.8
2626
"beautifulsoup4>=4.13.4",
2727
]
2828

2929
[project.optional-dependencies]
30-
mcp = ["mcp>=1.6.0"] # Add mcp optional dependencies here
30+
mcp = ["fastmcp>=2.2.5"] # Add mcp optional dependencies here
3131
openapi = [
3232
"prance>=23.6.21.0",
3333
"openapi-spec-validator>=0.7.1",
3434
"PyYAML>=6.0.2",
3535
] # Add openapi optional dependencies here
36-
dev = [
37-
"mypy>=1.14.1",
38-
"build>=1.2.2.post1",
39-
"twine>=6.1.0",
40-
]
36+
dev = ["mypy>=1.14.1", "build>=1.2.2.post1", "twine>=6.1.0"]
4137

4238
[project.urls]
4339
Homepage = "https://github.com/Oaklight/ToolRegistry"

src/toolregistry/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33

44
__all__ = ["ToolRegistry", "Tool"]
55

6-
__version__ = "0.4.6.post2"
6+
__version__ = "0.4.7.alpha"

0 commit comments

Comments
 (0)