Skip to content

Commit e033818

Browse files
committed
chore: bump version to v1.1.21 for clean release
1 parent 0b5822f commit e033818

2 files changed

Lines changed: 16 additions & 35 deletions

File tree

README.md

Lines changed: 15 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,16 @@
11
<div align="center">
22
<img src="./docs/assets/ragcode-banner.png" alt="RagCode MCP - Semantic Code Navigation with AI" width="100%">
3-
</div>
4-
5-
<div align="center">
6-
7-
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](./LICENSE)
8-
[![Go Version](https://img.shields.io/badge/Go-1.25%2B-blue)](https://go.dev/)
9-
[![Go Report Card](https://goreportcard.com/badge/github.com/doITmagic/rag-code-mcp)](https://goreportcard.com/report/github.com/doITmagic/rag-code-mcp)
10-
[![MCP](https://img.shields.io/badge/MCP-Compatible-green)](https://modelcontextprotocol.io)
11-
![AI Ready](https://img.shields.io/badge/Codebase-AI%20Ready-blueviolet)
12-
![Privacy](https://img.shields.io/badge/Privacy-100%25%20Local-brightgreen)
13-
![No Cloud](https://img.shields.io/badge/Cloud-Not%20Required-orange)
14-
![Zero Cost](https://img.shields.io/badge/API%20Costs-$0-success)
15-
[![GitHub Stars](https://img.shields.io/github/stars/doITmagic/rag-code-mcp?style=social)](https://github.com/doITmagic/rag-code-mcp)
163

4+
<p align="center">
5+
<a href="./LICENSE"><img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License: MIT"></a>
6+
<a href="https://go.dev/"><img src="https://img.shields.io/badge/Go-1.25%2B-blue" alt="Go Version"></a>
7+
<a href="https://goreportcard.com/report/github.com/doITmagic/rag-code-mcp"><img src="https://goreportcard.com/badge/github.com/doITmagic/rag-code-mcp" alt="Go Report Card"></a>
8+
<a href="https://modelcontextprotocol.io"><img src="https://img.shields.io/badge/Status-AI%20Ready-blueviolet" alt="AI Ready"></a>
9+
<img src="https://img.shields.io/badge/Privacy-100%25%20Local-brightgreen" alt="Privacy">
10+
<img src="https://img.shields.io/badge/Cloud-Not%20Required-orange" alt="No Cloud">
11+
<img src="https://img.shields.io/badge/API%20Costs-$0-success" alt="Zero Cost">
12+
<a href="https://github.com/doITmagic/rag-code-mcp"><img src="https://img.shields.io/github/stars/doITmagic/rag-code-mcp?style=social" alt="GitHub Stars"></a>
13+
</p>
1714
</div>
1815

1916
# RagCode MCP - Make Your Codebase AI-Ready
@@ -32,41 +29,25 @@ Built with the official [Model Context Protocol Go SDK](https://github.com/model
3229

3330
**No Go, no build tools, no configuration needed. Just Docker.**
3431

35-
<table>
36-
<tr><td><b>Linux (amd64)</b></td></tr>
37-
<tr><td>
38-
32+
### Linux (amd64)
3933
```bash
4034
curl -fsSL https://github.com/doITmagic/rag-code-mcp/releases/latest/download/rag-code-mcp_linux_amd64.tar.gz | tar xz && ./ragcode-installer -ollama=docker -qdrant=docker
4135
```
4236

43-
</td></tr>
44-
<tr><td><b>macOS (Apple Silicon)</b></td></tr>
45-
<tr><td>
46-
37+
### macOS (Apple Silicon / Intel)
4738
```bash
39+
# Apple Silicon (M1/M2/M3)
4840
curl -fsSL https://github.com/doITmagic/rag-code-mcp/releases/latest/download/rag-code-mcp_darwin_arm64.tar.gz | tar xz && ./ragcode-installer -ollama=docker -qdrant=docker
49-
```
50-
51-
</td></tr>
52-
<tr><td><b>macOS (Intel)</b></td></tr>
53-
<tr><td>
5441

55-
```bash
42+
# Intel Macs
5643
curl -fsSL https://github.com/doITmagic/rag-code-mcp/releases/latest/download/rag-code-mcp_darwin_amd64.tar.gz | tar xz && ./ragcode-installer -ollama=docker -qdrant=docker
5744
```
5845

59-
</td></tr>
60-
<tr><td><b>Windows (PowerShell)</b></td></tr>
61-
<tr><td>
62-
46+
### Windows (PowerShell)
6347
```powershell
6448
Invoke-WebRequest -Uri "https://github.com/doITmagic/rag-code-mcp/releases/latest/download/rag-code-mcp_windows_amd64.zip" -OutFile "ragcode.zip"; Expand-Archive ragcode.zip -DestinationPath . -Force; .\ragcode-installer.exe -ollama=docker -qdrant=docker
6549
```
6650

67-
</td></tr>
68-
</table>
69-
7051
**That's it!** The installer automatically:
7152
- ✅ Downloads and installs the `rag-code-mcp` binary
7253
- ✅ Sets up Ollama and Qdrant in Docker containers

cmd/rag-code-mcp/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import (
2626
)
2727

2828
var (
29-
Version = "1.1.20"
29+
Version = "1.1.21"
3030
Commit = "none"
3131
Date = "unknown"
3232
// Build trigger: Python analyzer support

0 commit comments

Comments
 (0)