Skip to content

Commit 7a3b156

Browse files
committed
chore: Update version to 0.1.4 and remove version-related targets
- Updated version to 0.1.4 - Removed version target from Makefile
1 parent 3dbcd8c commit 7a3b156

File tree

3 files changed

+3
-8
lines changed

3 files changed

+3
-8
lines changed

Makefile

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
# Makefile for cross-platform build
22
GO = go
33

4-
# Version information
5-
VERSION ?= 0.1.3
64

75
# Repository information
86
GITEE_OWNER ?= "oschina"
97
GITEE_REPO ?= "mcp-gitee"
108

119
# Flags
12-
LDFLAGS = -ldflags "-X main.Version=$(VERSION)"
10+
LDFLAGS = -ldflags "-s -w"
1311
BUILD_FLAGS = -o bin/mcp-gitee $(LDFLAGS)
1412

1513
define show_usage_info
@@ -34,9 +32,6 @@ clean:
3432
rm -f bin/mcp-gitee
3533
@echo "Clean up complete."
3634

37-
# 显示版本信息
38-
version:
39-
@echo "Version: $(VERSION)"
4035

4136
# Clean up release directory
4237
clean-release:

README_CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Gitee MCP 服务器是一个用于 Gitee 的模型上下文协议(Model Contex
44

55
## 功能特点
66

7-
- 与 Gitee 仓库、问题、拉取请求和通知进行交互
7+
- 与 Gitee 仓库、Issue、Pull Request和通知进行交互
88
- 可配置的 API 基础 URL,支持不同的 Gitee 实例
99
- 命令行标志,便于配置
1010
- 支持个人、组织和企业操作

utils/constants.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ package utils
22

33
var (
44
// Version gitee mcp server version
5-
Version = "0.1.3"
5+
Version = "0.1.4"
66
)

0 commit comments

Comments
 (0)