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.2.0"
version = "0.3.0"

@cubic-dev-ai cubic-dev-ai Bot Feb 3, 2026

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

P2: The package version is updated to 0.3.0, but jinjatest/__init__.py still defines __version__ = "0.1.0".

When bumping the version in pyproject.toml, you must also update the __version__ constant in the package initialization file to keep them in sync.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At pyproject.toml, line 3:

<comment>The package version is updated to `0.3.0`, but `jinjatest/__init__.py` still defines `__version__ = "0.1.0"`. 

When bumping the version in `pyproject.toml`, you must also update the `__version__` constant in the package initialization file to keep them in sync.</comment>

<file context>
@@ -1,6 +1,6 @@
 [project]
 name = "jinjatest"
-version = "0.2.0"
+version = "0.3.0"
 description = "A type-safe, structured testing library for Jinja templates"
 readme = "README.md"
</file context>
Fix with Cubic

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