Skip to content

Commit abc6522

Browse files
author
Your Name
committed
docs(docs): changelog generation
stats: lines: "+4/-4 (net +0)" files: 1 complexity: "Stable complexity"
1 parent 7c58c84 commit abc6522

9 files changed

Lines changed: 17 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -129,6 +129,11 @@
129129
- Update README.md with model tier configuration examples
130130
- Update examples/planfile/README.md with backend system documentation
131131

132+
## [0.1.68] - 2026-04-26
133+
134+
### Docs
135+
- Update README.md
136+
132137
## [0.1.67] - 2026-04-26
133138

134139
### Docs

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
**Intelligent LLM model router driven by real code metrics.**
44

55
[![PyPI](https://img.shields.io/pypi/v/llx)](https://pypi.org/project/llx/)
6-
[![Version](https://img.shields.io/badge/version-0.1.67-blue)](https://pypi.org/project/llx/)
6+
[![Version](https://img.shields.io/badge/version-0.1.68-blue)](https://pypi.org/project/llx/)
77
[![License: Apache-2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
88
[![Python](https://img.shields.io/badge/python-3.10%2B-blue.svg)](https://python.org)
99

1010

1111
## AI Cost Tracking
1212

13-
![PyPI](https://img.shields.io/badge/pypi-costs-blue) ![Version](https://img.shields.io/badge/version-0.1.67-blue) ![Python](https://img.shields.io/badge/python-3.9+-blue) ![License](https://img.shields.io/badge/license-Apache--2.0-green)
14-
![AI Cost](https://img.shields.io/badge/AI%20Cost-$7.50-orange) ![Human Time](https://img.shields.io/badge/Human%20Time-32.1h-blue) ![Model](https://img.shields.io/badge/Model-openrouter%2Fqwen%2Fqwen3--coder--next-lightgrey)
13+
![PyPI](https://img.shields.io/badge/pypi-costs-blue) ![Version](https://img.shields.io/badge/version-0.1.68-blue) ![Python](https://img.shields.io/badge/python-3.9+-blue) ![License](https://img.shields.io/badge/license-Apache--2.0-green)
14+
![AI Cost](https://img.shields.io/badge/AI%20Cost-$7.50-orange) ![Human Time](https://img.shields.io/badge/Human%20Time-32.3h-blue) ![Model](https://img.shields.io/badge/Model-openrouter%2Fqwen%2Fqwen3--coder--next-lightgrey)
1515

16-
- 🤖 **LLM usage:** $7.5000 (87 commits)
17-
- 👤 **Human dev:** ~$3208 (32.1h @ $100/h, 30min dedup)
16+
- 🤖 **LLM usage:** $7.5000 (88 commits)
17+
- 👤 **Human dev:** ~$3227 (32.3h @ $100/h, 30min dedup)
1818

1919
Generated on 2026-04-26 using [openrouter/qwen/qwen3-coder-next](https://openrouter.ai/qwen/qwen3-coder-next)
2020

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.1.67
1+
0.1.68

llx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
model = select_model(metrics)
1515
"""
1616

17-
__version__ = "0.1.67"
17+
__version__ = "0.1.68"
1818

1919
from llx.analysis.collector import ProjectMetrics, analyze_project
2020
from llx.llm import DEFAULT_MAX_TOKENS, LLM, LLMResponse, get_api_key, get_llm, get_llm_model

llx/orchestration/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,4 +32,4 @@
3232
"LLMOrchestrator",
3333
]
3434

35-
__version__ = "0.1.67"
35+
__version__ = "0.1.68"

llx/prellm/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
print(result.content)
1212
"""
1313

14-
__version__ = "0.1.67"
14+
__version__ = "0.1.68"
1515

1616
# 1-function API — the primary interface (always uses v0.3 pipeline internally)
1717
from llx.prellm.core import preprocess_and_execute, preprocess_and_execute_sync

llx/pyqual_plugins/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
Each module provides a specific CI/CD or quality check functionality.
55
"""
66

7-
__version__ = "0.1.67"
7+
__version__ = "0.1.68"

llx/tools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@
1919
"HealthChecker"
2020
]
2121

22-
__version__ = "0.1.67"
22+
__version__ = "0.1.68"

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "llx"
7-
version = "0.1.67"
7+
version = "0.1.68"
88
description = "Intelligent LLM model router driven by real code metrics — successor to preLLM"
99
readme = "README.md"
1010
requires-python = ">=3.10"

0 commit comments

Comments
 (0)