Skip to content

Commit 68548e9

Browse files
committed
Bump version: 1.2.14 → 1.2.15
1 parent e0095ad commit 68548e9

File tree

7 files changed

+11
-7
lines changed

7 files changed

+11
-7
lines changed

.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.2.14
2+
current_version = 1.2.15
33
commit = True
44
tag = True
55

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ RUN apt-get update \
6161
&& curl -fsSL https://deno.land/install.sh | sh \
6262
&& mkdir -p ${REPOSITORY_MANAGER_WORKSPACE} \
6363
&& curl -LsSf https://astral.sh/uv/install.sh | sh \
64-
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages repository-manager[all]>=1.2.14
64+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages repository-manager[all]>=1.2.15
6565

6666
WORKDIR /workspace
6767

README.md

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

24-
*Version: 1.2.14*
24+
*Version: 1.2.15*
2525

2626
## Overview
2727

pyproject.toml

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

55
[project]
66
name = "repository-manager"
7-
version = "1.2.14"
7+
version = "1.2.15"
88
description = "Manage your git projects"
99
readme = "README.md"
1010
authors = [{ name = "Audel Rouhi", email = "knucklessg1@gmail.com" }]
@@ -36,6 +36,8 @@ a2a = [
3636
"pydantic-ai-slim[fastmcp,openai,anthropic,google,huggingface,a2a,ag-ui,web]>=1.32.0",
3737
"pydantic-ai-skills",
3838
"fastapi>=0.128.0",
39+
"pre-commit>=4.5.1",
40+
"bump2version>=1.0.1",
3941
]
4042

4143
gitlab = [
@@ -49,6 +51,8 @@ all = [
4951
"pydantic-ai-skills",
5052
"fastapi>=0.128.0",
5153
"gitlab-api[all]>=25.14.9",
54+
"pre-commit>=4.5.1",
55+
"bump2version>=1.0.1",
5256
]
5357

5458
[project.scripts]

repository_manager/repository_manager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
import argparse
1414
import logging
1515

16-
__version__ = "1.2.14"
16+
__version__ = "1.2.15"
1717
import concurrent.futures
1818
import datetime
1919
from typing import List

repository_manager/repository_manager_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
import json
88
import tempfile
99

10-
__version__ = "1.2.14"
10+
__version__ = "1.2.15"
1111
from contextlib import asynccontextmanager
1212
from typing import Optional, Any, List, Union, Dict
1313
from pathlib import Path

repository_manager/repository_manager_mcp.py

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

7-
__version__ = "1.2.14"
7+
__version__ = "1.2.15"
88

99
from typing import Optional, Dict, List, Union, Any
1010
from pydantic import Field

0 commit comments

Comments
 (0)