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
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@

*.lock

# Project level claude MCP config
.mcp.json

# From https://raw.githubusercontent.com/github/gitignore/main/Python.gitignore

# Byte-compiled / optimized / DLL files
Expand Down Expand Up @@ -168,4 +171,4 @@ cython_debug/
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
# and can be added to the global gitignore or merged into this file. For a more nuclear
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
#.idea/
2 changes: 1 addition & 1 deletion librarian/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
libr --help
"""

__version__ = "0.13.0"
__version__ = "0.13.1"

__all__ = [
"__version__",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "agent-library"
version = "0.13.0"
version = "0.13.1"
description = "Multi-modal knowledge library with vector and full-text search for text, code, images, and PDFs"
readme = "README.md"
license = "Apache-2.0"
Expand Down
Loading