Skip to content

Commit a613b6e

Browse files
committed
bump version to 0.2.1
1 parent 03c60b4 commit a613b6e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

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 = "vllm-mlx"
7-
version = "0.2.0"
7+
version = "0.2.1"
88
description = "vLLM-like inference for Apple Silicon - GPU-accelerated Text, Image, Video & Audio on Mac"
99
readme = "README.md"
1010
license = {text = "Apache-2.0"}

vllm_mlx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
- Support for LLM and multimodal models
1313
"""
1414

15-
__version__ = "0.2.0"
15+
__version__ = "0.2.1"
1616

1717
# Continuous batching engine (core functionality, no torch required)
1818
from vllm_mlx.request import Request, RequestOutput, RequestStatus, SamplingParams

vllm_mlx/server.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ async def lifespan(app: FastAPI):
111111
app = FastAPI(
112112
title="vllm-mlx API",
113113
description="OpenAI-compatible API for MLX LLM/MLLM inference on Apple Silicon",
114-
version="0.2.0",
114+
version="0.2.1",
115115
lifespan=lifespan,
116116
)
117117

0 commit comments

Comments
 (0)