Commit 36192a0f authored by Your Name's avatar Your Name

Bump version to 0.99.2

- Fixed Jinja2 template syntax errors in dashboard templates
- Updated version in pyproject.toml, setup.py, and aisbf/__init__.py
- Updated PYPI.md and CHANGELOG.md with new version
parent c8d67301
......@@ -7,6 +7,17 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
## [0.99.2] - 2026-04-09
### Fixed
- **Jinja2 Template Syntax**: Fixed malformed template code caused by automated URL replacements
- Corrected nested `{{ }}` template tags in dashboard templates
- All JavaScript fetch calls now use proper `url_for` syntax
- Dashboard templates render correctly without syntax errors
### Changed
- **Version Bump**: Updated version to 0.99.2 in setup.py, pyproject.toml, and aisbf/__init__.py
## [0.99.1] - 2026-04-09
### Fixed
......
......@@ -41,8 +41,8 @@ python -m build
```
This creates:
- `dist/aisbf-0.99.1.tar.gz` - Source distribution
- `dist/aisbf-0.99.1-py3-none-any.whl` - Wheel distribution
- `dist/aisbf-0.99.2.tar.gz` - Source distribution
- `dist/aisbf-0.99.2-py3-none-any.whl` - Wheel distribution
## Testing the Package
......@@ -50,7 +50,7 @@ This creates:
```bash
# Install from the built wheel
pip install dist/aisbf-0.99.1-py3-none-any.whl
pip install dist/aisbf-0.99.2-py3-none-any.whl
# Test the installation
aisbf status
......
......@@ -54,7 +54,7 @@ from .auth.qwen import QwenOAuth2
from .handlers import RequestHandler, RotationHandler, AutoselectHandler
from .utils import count_messages_tokens, split_messages_into_chunks, get_max_request_tokens_for_model
__version__ = "0.99.1"
__version__ = "0.99.2"
__all__ = [
# Config
"config",
......
......@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "aisbf"
version = "0.99.1"
version = "0.99.2"
description = "AISBF - AI Service Broker Framework || AI Should Be Free - A modular proxy server for managing multiple AI provider integrations"
readme = "README.md"
license = "GPL-3.0-or-later"
......
......@@ -49,7 +49,7 @@ class InstallCommand(_install):
setup(
name="aisbf",
version="0.99.1",
version="0.99.2",
author="AISBF Contributors",
author_email="stefy@nexlab.net",
description="AISBF - AI Service Broker Framework || AI Should Be Free - A modular proxy server for managing multiple AI provider integrations",
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment