release: bump all packages to 0.1.1, add PyPI metadata and CHANGELOG

- Add readme field to all three pyproject.toml files (populates PyPI description page)
- Bump versions to 0.1.1 and update behave-core pin in shell/text
- Update Install sections in root, BEHAVE-SHELL, and BEHAVE-TEXT READMEs to lead with pip install from PyPI
- Add CHANGELOG.md at project root (Keep-a-Changelog format)
This commit is contained in:
2026-05-17 20:26:43 -04:00
parent 7e6bf92cf0
commit 214ce50941
7 changed files with 55 additions and 14 deletions

View File

@@ -14,8 +14,12 @@ aggregates, and cryptographic hashes — never raw keystrokes or command text.
## Install
```bash
pip install -e ../core/ -e .
# development (pytest + ruff):
pip install behave-shell
```
For local development (pytest + ruff):
```bash
pip install -e ../core/ -e ".[dev]"
```

View File

@@ -4,12 +4,13 @@ build-backend = "setuptools.build_meta"
[project]
name = "behave-shell"
version = "0.1.0"
version = "0.1.1"
description = "BEHAVE-SHELL — shell-session behavioral observation registry, layered on behave-core"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "GPL-3.0-or-later" }
authors = [{ name = "ANTI" }]
dependencies = ["pydantic>=2.6", "behave-core>=0.1.0"]
dependencies = ["pydantic>=2.6", "behave-core>=0.1.1"]
[project.optional-dependencies]
dev = ["pytest>=8", "pytest-cov", "ruff"]