Skip to content

Commit 5397d26

Browse files
committed
chore(release): bump cli to 2.0.8 + ruff import-sort fix
v2.0.7 build images came up green but CI's ``ruff check`` failed on ``cli/src/flow_cli/__init__.py`` (unsorted ``from importlib.metadata import PackageNotFoundError, version as _pkg_version`` split into two lines as I001 wants). The bad import survived the release-prep commit. Bumping past v2.0.7 with the fix included so we don't keep stacking a red CI on top of a red CI (prior v1.2.55→v1.2.65 lesson). v2.0.7 stays as a skipped tag (images built, CI red, never deployed).
1 parent 4393a0f commit 5397d26

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

cli/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "flow-cli"
3-
version = "2.0.7"
3+
version = "2.0.8"
44
description = "Flow CLI: a keyboard-first terminal client for Flow (tasks, notes, time, calendar)."
55
readme = "README.md"
66
requires-python = ">=3.12"

cli/src/flow_cli/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
from __future__ import annotations
22

3-
from importlib.metadata import PackageNotFoundError, version as _pkg_version
3+
from importlib.metadata import PackageNotFoundError
4+
from importlib.metadata import version as _pkg_version
45

56
try:
67
__version__ = _pkg_version("flow-cli")

0 commit comments

Comments
 (0)