Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ requires = ["setuptools>=77.0"]

[project]
name = "tesla_fleet_api"
version = "1.10.0"
version = "1.10.1"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P2 Badge Regenerate the lockfile for version 1.10.1

When developers or CI use the checked-in lockfile, uv.lock:743 still identifies the editable root package as version 1.10.0, so regenerating it for this pyproject.toml changes the lock. Consequently, uv sync --locked—whose help defines --locked as asserting that uv.lock remains unchanged—will reject the checkout rather than install it; update and commit uv.lock as part of this version bump.

Useful? React with 👍 / 👎.

license = "Apache-2.0"
description = "Tesla Fleet API library for Python"
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion tesla_fleet_api/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""Tesla Fleet API"""

__author__ = "hello@teslemetry.com"
__version__ = "1.10.0"
__version__ = "1.10.1"

from tesla_fleet_api.const import Region, is_valid_region
from tesla_fleet_api.tariff import (
Expand Down
Loading