Skip to content

Commit aa2f8de

Browse files
committed
Bump version: 1.33.0 → 1.34.0
1 parent 182daeb commit aa2f8de

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 1.33.0
2+
current_version = 1.34.0
33
commit = True
44
tag = True
55

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
![PyPI - Wheel](https://img.shields.io/pypi/wheel/servicenow-api)
2121
![PyPI - Implementation](https://img.shields.io/pypi/implementation/servicenow-api)
2222

23-
*Version: 1.33.0*
23+
*Version: 1.34.0*
2424

2525
> **Documentation** — Installation, deployment, and usage across the API, CLI, MCP,
2626
> and A2A agent interfaces are maintained in the

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ENV UV_COMPILE_BYTECODE=1 \
99
UV_SYSTEM_PYTHON=1 \
1010
UV_HTTP_TIMEOUT=3600
1111
RUN --mount=type=cache,target=/root/.cache/uv \
12-
uv pip install --system --upgrade --break-system-packages --prerelease=allow servicenow-api[all]>=1.33.0
12+
uv pip install --system --upgrade --break-system-packages --prerelease=allow servicenow-api[all]>=1.34.0
1313

1414
FROM python:3.11-slim
1515

pyproject.toml

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

55
[project]
66
name = "servicenow-api"
7-
version = "1.33.0"
7+
version = "1.34.0"
88
description = "Python ServiceNow API Wrapper"
99
readme = "README.md"
1010
classifiers = [ "Development Status :: 5 - Production/Stable", "License :: Public Domain", "Environment :: Console", "Operating System :: POSIX :: Linux", "Programming Language :: Python :: 3",]
1111
requires-python = ">=3.11, <3.15"
12-
dependencies = [ "agent-utilities>=0.45.0",]
12+
dependencies = [ "agent-utilities>=0.47.0",]
1313
[[project.authors]]
1414
name = "Audel Rouhi"
1515
email = "knucklessg1@gmail.com"
@@ -18,9 +18,9 @@ email = "knucklessg1@gmail.com"
1818
text = "MIT"
1919

2020
[project.optional-dependencies]
21-
mcp = [ "agent-utilities[mcp]>=0.45.0",]
22-
agent = [ "agent-utilities[agent,logfire]>=0.45.0",]
23-
all = [ "agent-utilities[mcp,agent,logfire]>=0.45.0",]
21+
mcp = [ "agent-utilities[mcp]>=0.47.0",]
22+
agent = [ "agent-utilities[agent,logfire]>=0.47.0",]
23+
all = [ "agent-utilities[mcp,agent,logfire]>=0.47.0",]
2424
test = [
2525
"pytest-xdist>=3.6.0", "pytest", "pytest-asyncio", "pytest-cov",]
2626

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
agent-utilities>=0.45.0
1+
agent-utilities>=0.47.0

servicenow_api/agent_server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import sys
55
import warnings
66

7-
__version__ = "1.33.0"
7+
__version__ = "1.34.0"
88

99
logging.basicConfig(
1010
level=logging.INFO,

servicenow_api/mcp_server.py

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

3434
from servicenow_api.auth import get_client
3535

36-
__version__ = "1.33.0"
36+
__version__ = "1.34.0"
3737
logger = get_logger(name="ServicenowMCP")
3838
logger.setLevel(logging.DEBUG)
3939
DEFAULT_SERVICENOW_USERNAME = os.getenv("SERVICENOW_USERNAME", None)

0 commit comments

Comments
 (0)