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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
# Changelog

## [v1.2.1] - Sifted Spelt - 2026-05-22

### Added

- **`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.

## [v1.2.0] - Whole Rye - 2026-05-22

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion flowr/__init__.py
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
"""Non-deterministic state machine specification to knead workflows."""

__version__ = "1.2.0"
__version__ = "1.2.1"
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
[project]
name = "flowr"
version = "1.2.0"
version = "1.2.1"
description = "non-deterministic state machine specification to knead workflows"
readme = "README.md"
requires-python = ">=3.13"
Expand DownExpand Up@@ -29,6 +29,9 @@ Repository = "https://github.com/nullhack/flowr"
Documentation = "https://nullhack.github.io/flowr/"
Spec = "https://nullhack.github.io/flowr/"

[project.scripts]
flowr = "flowr.__main__:main"

[project.optional-dependencies]
dev = [
"pdoc>=14.0",
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading