bump: version 1.32.5 → 1.32.6

This commit is contained in:
Krrish Dholakia 2024-03-19 20:17:50 -07:00
parent eeb8b585dc
commit f15d105ed2
2 changed files with 2 additions and 4 deletions

View file

@ -1817,7 +1817,6 @@ async def reset_budget(prisma_client: PrismaClient):
Updates db
"""
verbose_proxy_logger.debug("ENTERS RESET BUDGET")
if prisma_client is not None:
### RESET KEY BUDGET ###
now = datetime.utcnow()
@ -1829,7 +1828,6 @@ async def reset_budget(prisma_client: PrismaClient):
)
### RESET USER BUDGET ###
verbose_proxy_logger.debug("STARTS RESETTING USER BUDGET")
try:
await prisma_client.db.litellm_usertable.update_many(
where={"budget_reset_at": {"lt": now}},

View file

@ -1,6 +1,6 @@
[tool.poetry]
name = "litellm"
version = "1.32.5"
version = "1.32.6"
description = "Library to easily interface with LLM API providers"
authors = ["BerriAI"]
license = "MIT"
@ -77,7 +77,7 @@ requires = ["poetry-core", "wheel"]
build-backend = "poetry.core.masonry.api"
[tool.commitizen]
version = "1.32.5"
version = "1.32.6"
version_files = [
"pyproject.toml:^version"
]