Skip to content

Commit da64b2d

Browse files
authored
feat: add flowr console script entry point (v1.2.1 Sifted Spelt)
Add `[project.scripts] flowr = "flowr.__main__:main"` so `uv run flowr` works directly — no more `python -m flowr` required. Bump version 1.2.0 → 1.2.1 (Sifted Spelt).
1 parent 456c87f commit da64b2d

4 files changed

Lines changed: 12 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [v1.2.1] - Sifted Spelt - 2026-05-22
4+
5+
### Added
6+
7+
- **`flowr` console script**: `flowr = "flowr.__main__:main"` entry point. `uv run flowr` (or `flowr` from an activated venv) now launches the CLI directly — no more `python -m flowr` required.
8+
39
## [v1.2.0] - Whole Rye - 2026-05-22
410

511
### Fixed

flowr/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Non-deterministic state machine specification to knead workflows."""
22

3-
__version__ = "1.2.0"
3+
__version__ = "1.2.1"

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "flowr"
3-
version = "1.2.0"
3+
version = "1.2.1"
44
description = "non-deterministic state machine specification to knead workflows"
55
readme = "README.md"
66
requires-python = ">=3.13"
@@ -29,6 +29,9 @@ Repository = "https://github.com/nullhack/flowr"
2929
Documentation = "https://nullhack.github.io/flowr/"
3030
Spec = "https://nullhack.github.io/flowr/"
3131

32+
[project.scripts]
33+
flowr = "flowr.__main__:main"
34+
3235
[project.optional-dependencies]
3336
dev = [
3437
"pdoc>=14.0",

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)