Skip to content

Commit 69d5a8d

Browse files
authored
Merge pull request #61 from redis/release/0.3.1
release: bump version to 0.3.1, disable UV cache to prevent pipeline locks issues, update coverage file spec
2 parents 9db504b + 20882ce commit 69d5a8d

File tree

5 files changed

+14
-5
lines changed

5 files changed

+14
-5
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
uses: astral-sh/setup-uv@v6
3232
with:
3333
version: "latest"
34+
enable-cache: false
3435

3536
- name: ⚙️ Set Python up and add dependencies
3637
run: |
@@ -60,6 +61,7 @@ jobs:
6061
uses: astral-sh/setup-uv@v6
6162
with:
6263
version: "latest"
64+
enable-cache: false
6365

6466
- name: ⚙️ Set Python up and add dependencies
6567
run: |
@@ -113,6 +115,7 @@ jobs:
113115
uses: astral-sh/setup-uv@v6
114116
with:
115117
version: "latest"
118+
enable-cache: false
116119

117120
- name: ⚙️ Set Python ${{ matrix.python-version }} up and add dependencies
118121
run: |
@@ -138,7 +141,7 @@ jobs:
138141
uses: codecov/codecov-action@v5
139142
if: matrix.python-version == '3.12'
140143
with:
141-
file: ./coverage.xml
144+
files: ./coverage.xml
142145
flags: unittests
143146
name: codecov-umbrella
144147

@@ -158,6 +161,7 @@ jobs:
158161
uses: astral-sh/setup-uv@v6
159162
with:
160163
version: "latest"
164+
enable-cache: false
161165

162166
- name: ⚙️ Set Python ${{ matrix.python-version }} up and add dependencies
163167
run: |
@@ -208,6 +212,7 @@ jobs:
208212
uses: astral-sh/setup-uv@v6
209213
with:
210214
version: "latest"
215+
enable-cache: false
211216

212217
- name: ⚙️ Set up Python
213218
run: uv python install 3.12

.github/workflows/release.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@
4747
uses: astral-sh/setup-uv@v6
4848
with:
4949
version: "latest"
50+
enable-cache: false
5051

5152
- name: ⚙️ Set up Python
5253
run: uv python install 3.12
@@ -69,6 +70,7 @@
6970
uses: astral-sh/setup-uv@v6
7071
with:
7172
version: "latest"
73+
enable-cache: false
7274

7375
- name: ⚙️ Set Python up and add dependencies
7476
run: |
@@ -113,6 +115,7 @@
113115
uses: astral-sh/setup-uv@v6
114116
with:
115117
version: "latest"
118+
enable-cache: false
116119

117120
- name: ⚙️ Set up Python ${{ matrix.python-version }}
118121
run: |
@@ -158,6 +161,7 @@
158161
uses: astral-sh/setup-uv@v6
159162
with:
160163
version: "latest"
164+
enable-cache: false
161165

162166
- name: ⚙️ Set up Python
163167
run: uv python install 3.12

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "redis-mcp-server"
3-
version = "0.3.0"
3+
version = "0.3.1"
44
description = "Redis MCP Server - Model Context Protocol server for Redis"
55
readme = "README.md"
66
requires-python = ">=3.10"

src/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.3.0.alpha"
1+
__version__ = "0.3.1"

uv.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)