Changes were made to litellm_proxy_extras (schema.prisma, utils.py, migrations) but version was not bumped, causing CI publish job to fail. This commit bumps the version from 0.4.27 to 0.4.28 in all required files: - litellm-proxy-extras/pyproject.toml - requirements.txt - pyproject.toml Co-authored-by: shin-bot-litellm <shin-bot-litellm@users.noreply.github.com>
30 lines
821 B
TOML
30 lines
821 B
TOML
[tool.poetry]
|
|
name = "litellm-proxy-extras"
|
|
version = "0.4.28"
|
|
description = "Additional files for the LiteLLM Proxy. Reduces the size of the main litellm package."
|
|
authors = ["BerriAI"]
|
|
readme = "README.md"
|
|
|
|
|
|
[tool.poetry.urls]
|
|
homepage = "https://litellm.ai"
|
|
Homepage = "https://litellm.ai"
|
|
repository = "https://github.com/BerriAI/litellm"
|
|
Repository = "https://github.com/BerriAI/litellm"
|
|
documentation = "https://docs.litellm.ai"
|
|
Documentation = "https://docs.litellm.ai"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = ">=3.8.1,<4.0, !=3.9.7"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.commitizen]
|
|
version = "0.4.28"
|
|
version_files = [
|
|
"pyproject.toml:version",
|
|
"../requirements.txt:litellm-proxy-extras==",
|
|
"../pyproject.toml:litellm-proxy-extras = {version = \""
|
|
] |