Skip to content
Merged
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 pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "jinjatest"
version = "0.1.1"
version = "0.2.0"
Copy link

Copilot AI Jan 23, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[project].version is now 0.2.0, but the runtime package version constant is still __version__ = "0.1.0" in jinjatest/__init__.py (and previously didn’t match either). This will cause import jinjatest; jinjatest.__version__ to report an incorrect version; consider updating __version__ to match pyproject.toml or deriving it dynamically from package metadata to keep a single source of truth.

Suggested change
version = "0.2.0"
version = "0.1.0"

Copilot uses AI. Check for mistakes.
description = "A type-safe, structured testing library for Jinja templates"
readme = "README.md"
requires-python = ">=3.10"
Expand Down