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

View file

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