CLI(V1): Patch release (#11349)

This commit is contained in:
Rohit Malhotra 2025-10-13 18:11:59 -04:00 committed by GitHub
parent 2640d43159
commit 5076f21e86
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 9 additions and 4 deletions

View File

@ -1,3 +1,8 @@
"""OpenHands CLI package."""
"""OpenHands package."""
__version__ = '0.1.0'
from importlib.metadata import version, PackageNotFoundError
try:
__version__ = version("openhands")
except PackageNotFoundError:
__version__ = "0.0.0"

View File

@ -4,7 +4,7 @@ requires = [ "hatchling>=1.25" ]
[project]
name = "openhands"
version = "1.0.0"
version = "1.0.1"
description = "OpenHands CLI - Terminal User Interface for OpenHands AI Agent"
readme = "README.md"
license = { text = "MIT" }

2
openhands-cli/uv.lock generated
View File

@ -1625,7 +1625,7 @@ wheels = [
[[package]]
name = "openhands"
version = "1.0.0"
version = "1.0.1"
source = { editable = "." }
dependencies = [
{ name = "openhands-sdk" },