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
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,4 @@ All notable changes to pytest-beehave will be documented in this file.
- Terminal steps display and HTML acceptance criteria column
- Deprecated marker sync for `Example:` blocks

> **Note**: This is a beta release. The project is undergoing extensive rebuild. APIs and behaviour may change without notice.
> **Note**: First public release. APIs follow semantic versioning.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ If `features_dir` does not exist, the plugin exits silently.
|---|---|
| Python | >= 3.14 |
| pytest | >= 6.0 |
| beehave | >= 0.4.0 |
| beehave | >= 1.0.0 |

---

Expand Down
31 changes: 28 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "pytest-beehave"
version = "0.2.2"
version = "1.0.0"
description = "A pytest plugin that generates test stubs from Gherkin feature files, checks consistency, and displays BDD steps in pytest output"
readme = "README.md"
requires-python = ">=3.14"
Expand All @@ -12,16 +12,41 @@ maintainers = [
{ name = "eol", email = "nullhack@users.noreply.github.com" }
]
classifiers = [
"Development Status :: 4 - Beta",
"Development Status :: 5 - Production/Stable",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Testing",
"Topic :: Software Development :: Quality Assurance",
]
keywords = [
"pytest",
"bdd",
"gherkin",
"behave",
"beehave",
"cucumber",
"test",
"testing",
"tdd",
"plugin",
"acceptance",
"stub",
"generator",
"specification",
]
dependencies = [
"beehave>=0.4.0",
"beehave>=1.0.0",
]

[project.urls]
Homepage = "https://github.com/nullhack/pytest-beehave"
Repository = "https://github.com/nullhack/pytest-beehave"
Documentation = "https://github.com/nullhack/pytest-beehave/tree/main/docs/api/"
Issues = "https://github.com/nullhack/pytest-beehave/issues"
Changelog = "https://github.com/nullhack/pytest-beehave/blob/main/CHANGELOG.md"

[project.optional-dependencies]
html = [
Expand Down
2 changes: 1 addition & 1 deletion pytest_beehave/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""pytest-beehave — beehave stub generation during the pytest lifecycle."""

__version__ = "0.2.2"
__version__ = "1.0.0"
10 changes: 5 additions & 5 deletions uv.lock

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

Loading