File tree Expand file tree Collapse file tree 3 files changed +3
-8
lines changed Expand file tree Collapse file tree 3 files changed +3
-8
lines changed Original file line number Diff line number Diff line change 1
1
# Makefile for cross-platform build
2
2
GO = go
3
3
4
- # Version information
5
- VERSION ?= 0.1.3
6
4
7
5
# Repository information
8
6
GITEE_OWNER ?= "oschina"
9
7
GITEE_REPO ?= "mcp-gitee"
10
8
11
9
# Flags
12
- LDFLAGS = -ldflags "-X main.Version= $( VERSION ) "
10
+ LDFLAGS = -ldflags "-s -w "
13
11
BUILD_FLAGS = -o bin/mcp-gitee $(LDFLAGS )
14
12
15
13
define show_usage_info
34
32
rm -f bin/mcp-gitee
35
33
@echo " Clean up complete."
36
34
37
- # 显示版本信息
38
- version :
39
- @echo " Version: $( VERSION) "
40
35
41
36
# Clean up release directory
42
37
clean-release :
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ Gitee MCP 服务器是一个用于 Gitee 的模型上下文协议(Model Contex
4
4
5
5
## 功能特点
6
6
7
- - 与 Gitee 仓库、问题、拉取请求和通知进行交互
7
+ - 与 Gitee 仓库、Issue、Pull Request和通知进行交互
8
8
- 可配置的 API 基础 URL,支持不同的 Gitee 实例
9
9
- 命令行标志,便于配置
10
10
- 支持个人、组织和企业操作
Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ package utils
2
2
3
3
var (
4
4
// Version gitee mcp server version
5
- Version = "0.1.3 "
5
+ Version = "0.1.4 "
6
6
)
You can’t perform that action at this time.
0 commit comments