Skip to content

Commit 3d441ff

Browse files
committed
Bump version: 1.3.9 → 1.3.10
1 parent 7778918 commit 3d441ff

File tree

7 files changed

+7
-7
lines changed

7 files changed

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

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ RUN apt-get update \
5858
&& apt-get install -y git curl nano ca-certificates \
5959
&& mkdir -p ${REPOSITORY_MANAGER_WORKSPACE} \
6060
&& curl -LsSf https://astral.sh/uv/install.sh | sh \
61-
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow repository-manager[all]>=1.3.9 mem0-mcp-server
61+
&& uv pip install --system --upgrade --verbose --no-cache --break-system-packages --prerelease=allow repository-manager[all]>=1.3.10 mem0-mcp-server
6262

6363
WORKDIR /workspace
6464

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.3.9*
24+
*Version: 1.3.10*
2525

2626
## Overview
2727

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 = "repository-manager"
7-
version = "1.3.9"
7+
version = "1.3.10"
88
description = "Manage your git projects"
99
readme = "README.md"
1010
authors = [{ name = "Audel Rouhi", email = "knucklessg1@gmail.com" }]

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.3.9"
16+
__version__ = "1.3.10"
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
@@ -58,7 +58,7 @@
5858
QA_SYSTEM_PROMPT,
5959
)
6060

61-
__version__ = "1.3.9"
61+
__version__ = "1.3.10"
6262

6363
logging.basicConfig(
6464
level=logging.INFO,

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.3.9"
7+
__version__ = "1.3.10"
88

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

0 commit comments

Comments
 (0)