Skip to content

Commit fc77859

Browse files
committed
ready for v0.1.13
1 parent f24192b commit fc77859

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
11
# Changelog
2+
## [0.1.13] - 2025-04-07
3+
4+
- add `write_custom_semgrep_rule` prompt to MCP server
5+
26
## [0.1.12] - 2025-04-06
37

48
- `-h` and `-v` now work for `--help` and `--version` respectively

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,9 @@ Usage: semgrep-mcp [OPTIONS]
159159
and write to stdout. For sse, it will start an HTTP server on port 8000.
160160
161161
Options:
162-
--version Show the version and exit.
162+
-v, --version Show version and exit.
163163
-t, --transport [stdio|sse] Transport protocol to use (stdio or sse)
164-
--help Show this message and exit.
164+
-h, --help Show this message and exit.
165165
```
166166

167167
### Standard Input/Output (stdio)

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ build-backend = "hatchling.build"
66

77
[project]
88
name = "semgrep-mcp"
9-
version = "0.1.12"
9+
version = "0.1.13"
1010
description = "MCP Server for using Semgrep to scan code"
1111
readme = "README.md"
1212
changelog = "CHANGELOG.md"

src/semgrep_mcp/server.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
# Constants
2222
# ---------------------------------------------------------------------------------
2323

24-
__version__ = "0.1.12"
24+
__version__ = "0.1.13"
2525
DEFAULT_TIMEOUT = 300 # 5 mins in seconds
2626

2727
SEMGREP_URL = os.environ.get("SEMGREP_URL", "https://semgrep.dev")

uv.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)