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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ Using another agent harness? See [MCP Server](#mcp-server) for setup instruction
Install Semble first, then add the [code search snippet](#bash-integration) to your `AGENTS.md` or `CLAUDE.md`:

```bash
pip install semble # Install with pip
uv add semble # Or install with uv
pip install semble # Install with pip
uv tool install semble # Or install with uv
```

> Note: for Claude Code or Codex CLI sub-agents, use the [bash integration](#bash-integration) instead of, or alongside, MCP.
Expand Down Expand Up @@ -216,7 +216,7 @@ To update/upgrade Semble to the latest version:

```bash
pip install --upgrade semble # with pip
uv add semble --upgrade # with uv
uv tool upgrade semble # with uv
uv cache clean semble # for MCP users (restart your MCP client after)
```

Expand Down
1 change: 1 addition & 0 deletions src/semble/index/file_walker.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ class FileType:
".ruff_cache",
".cache",
".semble",
".next",
"dist",
"build",
".eggs",
Expand Down
2 changes: 1 addition & 1 deletion src/semble/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
__version_triple__ = (0, 1, 3)
__version_triple__ = (0, 1, 4)
__version__ = ".".join(map(str, __version_triple__))
Loading