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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to ModelDock will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/), and this project adheres to [Semantic Versioning](https://semver.org/).

## [0.1.2] - 2026-07-19

Patch fix for `catalog.json` not being included in the installed package.

### Fixed

- **Catalog data missing** β€” added `[tool.setuptools.package-data]` to `pyproject.toml` so `catalog.json` is bundled in the wheel/sdist. Previously the file was silently excluded, causing `ModelNotFoundError: 'catalog.json not found in package data'` at runtime.

---

## [0.1.1] - 2026-07-19

Patch release hardening the Ollama runtime and SDK ahead of broader adoption.
Expand Down Expand Up @@ -71,5 +81,6 @@ This project follows [Semantic Versioning](https://semver.org/):

## Links

[0.1.2]: https://github.com/OpenAgentHQ/modeldock/compare/v0.1.1...v0.1.2
[0.1.1]: https://github.com/OpenAgentHQ/modeldock/compare/v0.1.0...v0.1.1
[0.1.0]: https://github.com/OpenAgentHQ/modeldock/releases/tag/v0.1.0
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "modeldock"
version = "0.1.1"
version = "0.1.2"
description = "Lightweight, Python-first model manager for local LLMs (the package manager for local AI models)."
readme = "README.md"
requires-python = ">=3.9"
Expand Down Expand Up @@ -56,6 +56,9 @@ ollama = "modeldock.adapters.runtimes.ollama:OllamaRuntime"
[tool.setuptools.packages.find]
where = ["src"]

[tool.setuptools.package-data]
modeldock = ["data/catalog.json"]

[tool.ruff]
line-length = 100
target-version = "py39"
Expand Down
2 changes: 1 addition & 1 deletion src/modeldock/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

from typing import Any, Dict, List, Optional

__version__ = "0.1.1"
__version__ = "0.1.2"
__author__ = "Himanshu kumar"

from modeldock.common.config import Settings
Expand Down
Loading