Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
.aider*
.opencode*
OpenCode.md
dist/
4 changes: 2 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ builds:
- amd64
- arm64
ldflags:
- -s -w
- -s -w -X github.com/mark3labs/mcp-filesystem-server/filesystemserver.Version={{.Version}}
binary: mcp-filesystem-server
main: .

Expand All @@ -40,7 +40,7 @@ checksum:

# Using new snapshot configuration
snapshot:
name_template: "{{ .Version }}-SNAPSHOT-{{ .ShortCommit }}"
version_template: "{{ .Version }}-SNAPSHOT-{{ .ShortCommit }}"

changelog:
sort: asc
Expand Down
2 changes: 1 addition & 1 deletion filesystemserver/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"github.com/mark3labs/mcp-go/server"
)

var Version = "0.4.1"
var Version = "dev"

func NewFilesystemServer(allowedDirs []string) (*server.MCPServer, error) {

Expand Down